Glance Default icon
The Glance Default icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 12 px grid. 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, 12 px
ic_fluent_glance_default_12_regular.svg
Glance Default icon in React
npm install @fluentui/react-icons
import { GlanceDefault12Regular } from "@fluentui/react-icons";
export function Example() {
return <GlanceDefault12Regular aria-label="Glance Default" />;
}Use the Glance Default 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 { GlanceDefault12Regular, GlanceDefault12Filled } from "@fluentui/react-icons";
export function Example() {
return <GlanceDefault12Regular aria-label="Glance Default" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_glance_default_12_regular.svg" width="12" height="12" alt="Glance Default"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M6 9.5c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-2C6.67 5 6 5.67 6 6.5zm1.5.5a.5.5 0 0 1-.5-.5v-3c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5zM1 5.5C1 6.33 1.67 7 2.5 7h1C4.33 7 5 6.33 5 5.5v-3C5 1.67 4.33 1 3.5 1h-1C1.67 1 1 1.67 1 2.5zm1.5.5a.5.5 0 0 1-.5-.5v-3c0-.28.22-.5.5-.5h1c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5zm5-2a1.5 1.5 0 1 1 0-3h2a1.5 1.5 0 0 1 0 3zM7 2.5c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.5.5m-6 7c0 .83.67 1.5 1.5 1.5h1a1.5 1.5 0 0 0 0-3h-1C1.67 8 1 8.67 1 9.5m1.5.5a.5.5 0 0 1 0-1h1a.5.5 0 0 1 0 1z"/></svg>Details
| Name | Glance Default |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 12 px |
| Regular (outlined) file | ic_fluent_glance_default_12_regular.svg |
| Filled file | ic_fluent_glance_default_12_filled.svg |
| React (Regular) | GlanceDefault12Regular |
| React (Filled) | GlanceDefault12Filled |
| License | MIT (© Microsoft Corporation) |