Navigation Unread icon
Used in general menu expand scenarios. The Navigation Unread 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 Navigation Unread 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 { NavigationUnread24Regular, NavigationUnread24Filled } from "@fluentui/react-icons";
export function Example() {
return <NavigationUnread24Regular aria-label="Navigation Unread" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_navigation_unread_24_regular.svg" width="24" height="24" alt="Navigation Unread"> 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="M19.25 8.5C20.7688 8.5 22 7.26878 22 5.75C22 4.23122 20.7688 3 19.25 3C17.7312 3 16.5 4.23122 16.5 5.75C16.5 7.26878 17.7312 8.5 19.25 8.5ZM15.5757 6.50324C15.5261 6.25991 15.5 6.008 15.5 5.75C15.5 5.4943 15.5256 5.24457 15.5744 5.00324H2.75195L2.65018 5.01009C2.28411 5.05975 2.00195 5.37355 2.00195 5.75324C2.00195 6.16746 2.33774 6.50324 2.75195 6.50324H15.5757ZM21.2528 18H2.75281L2.65104 18.0069C2.28497 18.0565 2.00281 18.3703 2.00281 18.75C2.00281 19.1642 2.3386 19.5 2.75281 19.5H21.2528L21.3546 19.4932C21.7207 19.4435 22.0028 19.1297 22.0028 18.75C22.0028 18.3358 21.667 18 21.2528 18ZM2.75281 11.503H21.2528C21.667 11.503 22.0028 11.8388 22.0028 12.253C22.0028 12.6327 21.7207 12.9465 21.3546 12.9962L21.2528 13.003H2.75281C2.3386 13.003 2.00281 12.6672 2.00281 12.253C2.00281 11.8733 2.28497 11.5595 2.65104 11.5099L2.75281 11.503Z" 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/navigation_unread_24_regular.svg";Details
| Name | Navigation Unread |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_navigation_unread_24_regular.svg |
| Filled file | ic_fluent_navigation_unread_24_filled.svg |
| React components | NavigationUnread24Regular, NavigationUnread24Filled |
| License | MIT (© Microsoft Corporation) |