Image Style Guide icon
The Image Style Guide 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_style_guide_16_regular.svg
Image Style Guide icon in React
npm install @fluentui/react-icons
import { ImageStyleGuide16Regular } from "@fluentui/react-icons";
export function Example() {
return <ImageStyleGuide16Regular aria-label="Image Style Guide" />;
}Use the Image Style Guide 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 { ImageStyleGuide16Regular, ImageStyleGuide16Filled } from "@fluentui/react-icons";
export function Example() {
return <ImageStyleGuide16Regular aria-label="Image Style Guide" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_image_style_guide_20_regular.svg" width="20" height="20" alt="Image Style Guide"> 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="M14 3a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3v-3h1v3q0 .56.28 1.02l4.67-4.59a1.5 1.5 0 0 1 2.1 0l4.67 4.6A2 2 0 0 0 16 14V6a2 2 0 0 0-2-2h-3.1l.01-.07q.12-.47.07-.93zm-3.65 8.15a.5.5 0 0 0-.7 0l-4.66 4.58A2 2 0 0 0 6 16h8a2 2 0 0 0 1.01-.27zM5.5 3C6.33 3 7 3.67 7 4.5v4c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 1 8.5v-4C1 3.67 1.67 3 2.5 3zm7 3a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M4.19 2a1.5 1.5 0 0 1 1.8-.95l2.9.78a1.5 1.5 0 0 1 1.06 1.84L8.9 7.53A1.5 1.5 0 0 1 8 8.54V4.5q0-.72-.37-1.3A2.5 2.5 0 0 0 5.5 2zm8.31 5a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1"/></svg>Details
| Name | Image Style Guide |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px, 20 px |
| Regular (outlined) file | ic_fluent_image_style_guide_20_regular.svg |
| Filled file | ic_fluent_image_style_guide_20_filled.svg |
| React (Regular) | ImageStyleGuide16Regular, ImageStyleGuide20Regular |
| React (Filled) | ImageStyleGuide16Filled, ImageStyleGuide20Filled |
| License | MIT (© Microsoft Corporation) |