Square Hint icon
Used to represent general UI, app tile, content or other general layouts The Square Hint 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 Square 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 { SquareHint24Regular, SquareHint24Filled } from "@fluentui/react-icons";
export function Example() {
return <SquareHint24Regular aria-label="Square Hint" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_square_hint_24_regular.svg" width="24" height="24" alt="Square Hint"> 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="M10 3.75C10 3.33579 10.3358 3 10.75 3H13.25C13.6642 3 14 3.33579 14 3.75C14 4.16421 13.6642 4.5 13.25 4.5H10.75C10.3358 4.5 10 4.16421 10 3.75ZM17.75 4.5C17.3358 4.5 17 4.16421 17 3.75C17 3.33579 17.3358 3 17.75 3C19.5449 3 21 4.45507 21 6.25C21 6.66421 20.6642 7 20.25 7C19.8358 7 19.5 6.66421 19.5 6.25C19.5 5.2835 18.7165 4.5 17.75 4.5ZM6.25 3C6.66421 3 7 3.33579 7 3.75C7 4.16421 6.66421 4.5 6.25 4.5C5.2835 4.5 4.5 5.2835 4.5 6.25C4.5 6.66421 4.16421 7 3.75 7C3.33579 7 3 6.66421 3 6.25C3 4.45507 4.45507 3 6.25 3ZM3.75 17C3.33579 17 3 17.3358 3 17.75C3 19.5449 4.45507 21 6.25 21C6.66421 21 7 20.6642 7 20.25C7 19.8358 6.66421 19.5 6.25 19.5C5.2835 19.5 4.5 18.7165 4.5 17.75C4.5 17.3358 4.16421 17 3.75 17ZM10.75 19.5C10.3358 19.5 10 19.8358 10 20.25C10 20.6642 10.3358 21 10.75 21H13.25C13.6642 21 14 20.6642 14 20.25C14 19.8358 13.6642 19.5 13.25 19.5H10.75ZM17.75 19.5C17.3358 19.5 17 19.8358 17 20.25C17 20.6642 17.3358 21 17.75 21C19.5449 21 21 19.5449 21 17.75C21 17.3358 20.6642 17 20.25 17C19.8358 17 19.5 17.3358 19.5 17.75C19.5 18.7165 18.7165 19.5 17.75 19.5ZM20.25 10C20.6642 10 21 10.3358 21 10.75V13.25C21 13.6642 20.6642 14 20.25 14C19.8358 14 19.5 13.6642 19.5 13.25V10.75C19.5 10.3358 19.8358 10 20.25 10ZM3 13.25C3 13.6642 3.33579 14 3.75 14C4.16421 14 4.5 13.6642 4.5 13.25V10.75C4.5 10.3358 4.16421 10 3.75 10C3.33579 10 3 10.3358 3 10.75V13.25Z" 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/square_hint_24_regular.svg";Details
| Name | Square Hint |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_square_hint_24_regular.svg |
| Filled file | ic_fluent_square_hint_24_filled.svg |
| React components | SquareHint24Regular, SquareHint24Filled |
| License | MIT (© Microsoft Corporation) |