Slide Grid icon
Used in slide ui scenarios. The Slide Grid 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 Grid 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 { SlideGrid24Regular, SlideGrid24Filled } from "@fluentui/react-icons";
export function Example() {
return <SlideGrid24Regular aria-label="Slide Grid" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_slide_grid_24_regular.svg" width="24" height="24" alt="Slide Grid"> 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="M5 13.75C5 13.0596 5.55964 12.5 6.25 12.5H10.25C10.9404 12.5 11.5 13.0596 11.5 13.75V15.75C11.5 16.4404 10.9404 17 10.25 17H6.25C5.55964 17 5 16.4404 5 15.75V13.75ZM6.5 14V15.5H10V14H6.5ZM13.75 12.5C13.0596 12.5 12.5 13.0596 12.5 13.75V15.75C12.5 16.4404 13.0596 17 13.75 17H17.75C18.4404 17 19 16.4404 19 15.75V13.75C19 13.0596 18.4404 12.5 17.75 12.5H13.75ZM14 15.5V14H17.5V15.5H14ZM5 8.25C5 7.55964 5.55964 7 6.25 7H10.25C10.9404 7 11.5 7.55964 11.5 8.25V10.25C11.5 10.9404 10.9404 11.5 10.25 11.5H6.25C5.55964 11.5 5 10.9404 5 10.25V8.25ZM6.5 8.5V10H10V8.5H6.5ZM13.75 7C13.0596 7 12.5 7.55964 12.5 8.25V10.25C12.5 10.9404 13.0596 11.5 13.75 11.5H17.75C18.4404 11.5 19 10.9404 19 10.25V8.25C19 7.55964 18.4404 7 17.75 7H13.75ZM14 10V8.5H17.5V10H14ZM2 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.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_grid_24_regular.svg";Details
| Name | Slide Grid |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_slide_grid_24_regular.svg |
| Filled file | ic_fluent_slide_grid_24_filled.svg |
| React components | SlideGrid24Regular, SlideGrid24Filled |
| License | MIT (© Microsoft Corporation) |