Notepad Person icon
Used in general scratch pad scenarios. The Notepad Person 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 Notepad Person 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 { NotepadPerson24Regular, NotepadPerson24Filled } from "@fluentui/react-icons";
export function Example() {
return <NotepadPerson24Regular aria-label="Notepad Person" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_notepad_person_24_regular.svg" width="24" height="24" alt="Notepad Person"> 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="M21.2275 18C22.2065 18.0001 23 18.7935 23 19.7725V19.875C23 21.4315 21.7143 23 18.5 23C15.2857 23 14 21.4374 14 19.875V19.7725C14 18.7935 14.7935 18.0001 15.7725 18H21.2275ZM16.25 2C16.6642 2 17 2.33579 17 2.75V4H17.75C18.9926 4 20 5.00736 20 6.25V11.3359C19.5455 11.1201 19.0367 11 18.5 11V6.25C18.5 5.83579 18.1642 5.5 17.75 5.5H6.25C5.83579 5.5 5.5 5.83579 5.5 6.25V19.75C5.5 20.1642 5.83579 20.5 6.25 20.5H13.0527C13.1408 21.0252 13.3413 21.5371 13.665 22H6.25C5.00736 22 4 20.9926 4 19.75V6.25C4 5.00736 5.00736 4 6.25 4H7V2.75C7 2.33579 7.33579 2 7.75 2C8.16421 2 8.5 2.33579 8.5 2.75V4H11.25V2.75C11.25 2.33579 11.5858 2 12 2C12.4142 2 12.75 2.33579 12.75 2.75V4H15.5V2.75C15.5 2.33579 15.8358 2 16.25 2ZM11.3271 16.0039C11.7051 16.0425 12 16.3618 12 16.75C12 17.1382 11.7051 17.4575 11.3271 17.4961L11.25 17.5H8.25C7.83579 17.5 7.5 17.1642 7.5 16.75C7.5 16.3358 7.83579 16 8.25 16H11.25L11.3271 16.0039ZM18.5 12C19.8807 12 21 13.1193 21 14.5C21 15.8807 19.8807 17 18.5 17C17.1193 17 16 15.8807 16 14.5C16 13.1193 17.1193 12 18.5 12ZM14.25 12C14.6642 12 15 12.3358 15 12.75C15 13.1642 14.6642 13.5 14.25 13.5H8.25C7.83579 13.5 7.5 13.1642 7.5 12.75C7.5 12.3358 7.83579 12 8.25 12H14.25ZM15.75 8C16.1642 8 16.5 8.33579 16.5 8.75C16.5 9.16421 16.1642 9.5 15.75 9.5H8.25C7.83579 9.5 7.5 9.16421 7.5 8.75C7.5 8.33579 7.83579 8 8.25 8H15.75Z" 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/notepad_person_24_regular.svg";Details
| Name | Notepad Person |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_notepad_person_24_regular.svg |
| Filled file | ic_fluent_notepad_person_24_filled.svg |
| React components | NotepadPerson24Regular, NotepadPerson24Filled |
| License | MIT (© Microsoft Corporation) |