Notebook Question Mark icon
Used in general organized note scenarios. The Notebook Question Mark 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 Notebook Question Mark 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 { NotebookQuestionMark24Regular, NotebookQuestionMark24Filled } from "@fluentui/react-icons";
export function Example() {
return <NotebookQuestionMark24Regular aria-label="Notebook Question Mark" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_notebook_question_mark_24_regular.svg" width="24" height="24" alt="Notebook Question Mark"> 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="M6.5 12C9.53757 12 12 14.4624 12 17.5C12 20.5376 9.53757 23 6.5 23C3.46243 23 1 20.5376 1 17.5C1 14.4624 3.46243 12 6.5 12ZM16.7488 2C17.9915 2 18.9988 3.00736 18.9988 4.25V19.75C18.9988 20.9926 17.9915 22 16.7488 22L11.1896 22.0008C11.616 21.5566 11.98 21.052 12.2672 20.5011L16.7488 20.5C17.163 20.5 17.4988 20.1642 17.4988 19.75V4.25C17.4988 3.83579 17.163 3.5 16.7488 3.5H6.25C5.83579 3.5 5.5 3.83579 5.5 4.25L5.50009 11.0764C4.97687 11.1572 4.47425 11.3004 4 11.4981V4.25C4 3.00736 5.00736 2 6.25 2H16.7488ZM6.5 19.88C6.15509 19.88 5.87549 20.1596 5.87549 20.5045C5.87549 20.8494 6.15509 21.129 6.5 21.129C6.84491 21.129 7.12451 20.8494 7.12451 20.5045C7.12451 20.1596 6.84491 19.88 6.5 19.88ZM6.50004 14.0031C5.45209 14.0031 4.63575 14.8205 4.64666 15.9574C4.64931 16.2335 4.87531 16.4552 5.15144 16.4526C5.42757 16.4499 5.64927 16.2239 5.64662 15.9478C5.64106 15.3688 6.00627 15.0031 6.50004 15.0031C6.97242 15.0031 7.35345 15.395 7.35345 15.9526C7.35345 16.1769 7.27816 16.3437 7.03552 16.63L6.9365 16.7432L6.67113 17.0333C6.18682 17.5749 6.00004 17.9255 6.00004 18.5006C6.00004 18.7767 6.2239 19.0006 6.50004 19.0006C6.77619 19.0006 7.00004 18.7767 7.00004 18.5006C7.00004 18.2684 7.07645 18.0981 7.32379 17.8063L7.42474 17.6908L7.69048 17.4003C8.16815 16.866 8.35345 16.5186 8.35345 15.9526C8.35345 14.8489 7.53109 14.0031 6.50004 14.0031ZM20.75 15.0019C21.1297 15.0019 21.4435 15.2841 21.4932 15.6502L21.5 15.7519V17.25C21.5 17.6297 21.2178 17.9435 20.8518 17.9932L20.75 18H20V15.0019H20.75ZM20.75 11.0019C21.1297 11.0019 21.4435 11.2841 21.4932 11.6502L21.5 11.7519V13.25C21.5 13.6297 21.2178 13.9435 20.8518 13.9932L20.75 14H20V11.0019H20.75ZM20.75 7.00194C21.1297 7.00194 21.4435 7.28409 21.4932 7.65017L21.5 7.75194V9.25C21.5 9.6297 21.2178 9.94349 20.8518 9.99315L20.75 10H20V7.00194H20.75ZM15.2488 5C15.663 5 15.9988 5.33579 15.9988 5.75V8.2485C15.9988 8.66272 15.663 8.9985 15.2488 8.9985H7.75C7.33579 8.9985 7 8.66272 7 8.2485V5.75C7 5.33579 7.33579 5 7.75 5H15.2488ZM14.4988 6.5H8.5V7.4985H14.4988V6.5Z" 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/notebook_question_mark_24_regular.svg";Details
| Name | Notebook Question Mark |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_notebook_question_mark_24_regular.svg |
| Filled file | ic_fluent_notebook_question_mark_24_filled.svg |
| React components | NotebookQuestionMark24Regular, NotebookQuestionMark24Filled |
| License | MIT (© Microsoft Corporation) |