Slide Content icon
Used to represent presenter view in Powerpoint & general slide content. The Slide Content 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.
Use the Slide Content 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 { SlideContent24Regular, SlideContent24Filled } from "@fluentui/react-icons";
export function Example() {
return <SlideContent24Regular aria-label="Slide Content" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_slide_content_24_regular.svg" width="24" height="24" alt="Slide Content"> 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="M2 6.75C2 5.23122 3.23122 4 4.75 4H19.25C20.7688 4 22 5.23122 22 6.75V17.25C22 18.7688 20.7688 20 19.25 20H4.75C3.23122 20 2 18.7688 2 17.25V6.75ZM4.75 5.5C4.05964 5.5 3.5 6.05964 3.5 6.75V17.25C3.5 17.9404 4.05964 18.5 4.75 18.5H19.25C19.9404 18.5 20.5 17.9404 20.5 17.25V6.75C20.5 6.05964 19.9404 5.5 19.25 5.5H4.75ZM5 9.25C5 8.55964 5.55964 8 6.25 8H11.75C12.4404 8 13 8.55964 13 9.25V14.75C13 15.4404 12.4404 16 11.75 16H6.25C5.55964 16 5 15.4404 5 14.75V9.25ZM14 8.75C14 8.33579 14.3358 8 14.75 8H18.25C18.6642 8 19 8.33579 19 8.75C19 9.16421 18.6642 9.5 18.25 9.5H14.75C14.3358 9.5 14 9.16421 14 8.75ZM14.75 11C14.3358 11 14 11.3358 14 11.75C14 12.1642 14.3358 12.5 14.75 12.5H18.25C18.6642 12.5 19 12.1642 19 11.75C19 11.3358 18.6642 11 18.25 11H14.75ZM14 14.75C14 14.3358 14.3358 14 14.75 14H18.25C18.6642 14 19 14.3358 19 14.75C19 15.1642 18.6642 15.5 18.25 15.5H14.75C14.3358 15.5 14 15.1642 14 14.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_content_24_regular.svg";Details
| Name | Slide Content |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_slide_content_24_regular.svg |
| Filled file | ic_fluent_slide_content_24_filled.svg |
| React components | SlideContent24Regular, SlideContent24Filled |
| License | MIT (© Microsoft Corporation) |