Slide Multiple icon

Used in slide ui scenarios. The Slide Multiple icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.

Regular (outlined)

SVG

Filled

SVG

Use the Slide Multiple icon in React

Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.

npm install @fluentui/react-icons

import { SlideMultiple24Regular, SlideMultiple24Filled } from "@fluentui/react-icons";

export function Example() {
  return <SlideMultiple24Regular aria-label="Slide Multiple" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_slide_multiple_24_regular.svg" width="24" height="24" alt="Slide Multiple">

Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:

<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.75 3C4.12665 3 2 5.12665 2 7.75V14.75C2 15.9926 3.00736 17 4.25 17H4.5V15.5H4.25C3.83579 15.5 3.5 15.1642 3.5 14.75V7.75C3.5 5.95507 4.95507 4.5 6.75 4.5H16.75C17.1642 4.5 17.5 4.83579 17.5 5.25V5.5H19V5.25C19 4.00736 17.9926 3 16.75 3H6.75ZM7.75 6.5C6.50736 6.5 5.5 7.50736 5.5 8.75V18.25C5.5 19.4926 6.50736 20.5 7.75 20.5H19.75C20.9926 20.5 22 19.4926 22 18.25V8.75C22 7.50736 20.9926 6.5 19.75 6.5H7.75ZM7 8.75C7 8.33579 7.33579 8 7.75 8H19.75C20.1642 8 20.5 8.33579 20.5 8.75V18.25C20.5 18.6642 20.1642 19 19.75 19H7.75C7.33579 19 7 18.6642 7 18.25V8.75Z" fill="currentColor"/></svg>

Use it from the SVG package

Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:

npm install @fluentui/svg-icons

import icon from "@fluentui/svg-icons/icons/slide_multiple_24_regular.svg";

Details

NameSlide Multiple
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_slide_multiple_24_regular.svg
Filled fileic_fluent_slide_multiple_24_filled.svg
React componentsSlideMultiple24Regular, SlideMultiple24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

slidelandscapedocumentpresentationstack

Related icons