Image Stack icon
Used in image review scenarios. The Image Stack icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 16 to 20 px. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 16 px
ic_fluent_image_stack_16_regular.svg
Image Stack icon in React
npm install @fluentui/react-icons
import { ImageStack16Regular } from "@fluentui/react-icons";
export function Example() {
return <ImageStack16Regular aria-label="Image Stack" />;
}Use the Image Stack 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 { ImageStack16Regular, ImageStack16Filled } from "@fluentui/react-icons";
export function Example() {
return <ImageStack16Regular aria-label="Image Stack" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_image_stack_20_regular.svg" width="20" height="20" alt="Image Stack"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3zm7.7 13-2.46-2.47a1.75 1.75 0 0 0-2.48 0L6.3 16H6a2 2 0 0 1-2-2v-4h12v4a2 2 0 0 1-2 2zm-6 0 1.77-1.76c.3-.3.77-.3 1.06 0L12.29 16zM16 9h-2.8l-1.96-1.97a1.75 1.75 0 0 0-2.48 0L6.8 9H4V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2zM8.2 9l1.27-1.26c.3-.3.77-.3 1.06 0L11.79 9zM15 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-1 7.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2"/></svg>Details
| Name | Image Stack |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px, 20 px |
| Regular (outlined) file | ic_fluent_image_stack_20_regular.svg |
| Filled file | ic_fluent_image_stack_20_filled.svg |
| React (Regular) | ImageStack16Regular, ImageStack20Regular |
| React (Filled) | ImageStack16Filled, ImageStack20Filled |
| License | MIT (© Microsoft Corporation) |