Folder Hint icon
The Folder Hint icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 20 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, 20 px
ic_fluent_folder_hint_20_regular.svg
Folder Hint icon in React
npm install @fluentui/react-icons
import { FolderHint20Regular } from "@fluentui/react-icons";
export function Example() {
return <FolderHint20Regular aria-label="Folder Hint" />;
}Use the Folder Hint 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 { FolderHint20Regular, FolderHint20Filled } from "@fluentui/react-icons";
export function Example() {
return <FolderHint20Regular aria-label="Folder Hint" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_folder_hint_20_regular.svg" width="20" height="20" alt="Folder Hint"> 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="M2.5 13.5c.28 0 .5.22.5.5v.5c0 .83.67 1.5 1.5 1.5H5a.5.5 0 0 1 0 1h-.5A2.5 2.5 0 0 1 2 14.5V14c0-.28.22-.5.5-.5M9 16a.5.5 0 0 1 0 1H7a.5.5 0 0 1 0-1zm4 0a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm4.5-2.5c.28 0 .5.22.5.5v.5a2.5 2.5 0 0 1-2.5 2.5H15a.5.5 0 0 1 0-1h.5c.83 0 1.5-.67 1.5-1.5V14c0-.28.22-.5.5-.5M2.5 10c.28 0 .5.22.5.5V12a.5.5 0 0 1-1 0v-1.5c0-.28.22-.5.5-.5m15 0c.28 0 .5.22.5.5V12a.5.5 0 0 1-1 0v-1.5c0-.28.22-.5.5-.5M7.09 3q.62.01 1.06.44l1.7 1.7c.2.2.2.52 0 .71l-1.7 1.71A1.5 1.5 0 0 1 7.09 8H6.5a.5.5 0 0 1 0-1h.59a.5.5 0 0 0 .35-.15L8.79 5.5 7.44 4.15A.5.5 0 0 0 7.09 4H4.5C3.67 4 3 4.67 3 5.5V7h1.5a.5.5 0 0 1 0 1H3v.5a.5.5 0 0 1-1 0v-3A2.5 2.5 0 0 1 4.5 3zm8.41 2A2.5 2.5 0 0 1 18 7.5v1a.5.5 0 0 1-1 0v-1c0-.83-.67-1.5-1.5-1.5H15a.5.5 0 0 1 0-1zM13 5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z"/></svg>Details
| Name | Folder Hint |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_folder_hint_20_regular.svg |
| Filled file | ic_fluent_folder_hint_20_filled.svg |
| React (Regular) | FolderHint20Regular |
| React (Filled) | FolderHint20Filled |
| License | MIT (© Microsoft Corporation) |