Notebook Subsection icon
Used to denote saved spaces in notebooks. The Notebook Subsection 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 Subsection 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 { NotebookSubsection24Regular, NotebookSubsection24Filled } from "@fluentui/react-icons";
export function Example() {
return <NotebookSubsection24Regular aria-label="Notebook Subsection" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_notebook_subsection_24_regular.svg" width="24" height="24" alt="Notebook Subsection"> 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="M9 2C6.51472 2 4.5 4.01472 4.5 6.5V15.9C4.5 16.8797 5.12611 17.7131 6 18.022V6.5C6 4.84315 7.34315 3.5 9 3.5H14.002C13.6931 2.62611 12.8597 2 11.88 2H9Z" fill="currentColor"/>
<path d="M7 6.75C7 5.50736 8.00736 4.5 9.25 4.5H15V2.75C15 2.33579 15.3358 2 15.75 2C16.1642 2 16.5 2.33579 16.5 2.75V21.25C16.5 21.6642 16.1642 22 15.75 22C15.3358 22 15 21.6642 15 21.25V20H9.25C8.00736 20 7 18.9926 7 17.75V6.75ZM15 18.5V6H9.25C8.83579 6 8.5 6.33579 8.5 6.75V17.75C8.5 18.1642 8.83579 18.5 9.25 18.5H15Z" 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_subsection_24_regular.svg";Details
| Name | Notebook Subsection |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_notebook_subsection_24_regular.svg |
| Filled file | ic_fluent_notebook_subsection_24_filled.svg |
| React components | NotebookSubsection24Regular, NotebookSubsection24Filled |
| License | MIT (© Microsoft Corporation) |