Notepad icon

Used in general scratch pad scenarios. The Notepad 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.

Regular (outlined)

SVG

Filled

SVG

Use the Notepad 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 { Notepad24Regular, Notepad24Filled } from "@fluentui/react-icons";

export function Example() {
  return <Notepad24Regular aria-label="Notepad" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_notepad_24_regular.svg" width="24" height="24" alt="Notepad">

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="M16.25 2C16.6642 2 17 2.33579 17 2.75V4H17.75C18.9926 4 20 5.00736 20 6.25V16.6895C20 17.0872 19.8418 17.4687 19.5605 17.75L15.75 21.5605C15.4687 21.8418 15.0872 22 14.6895 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 2ZM6.25 5.5C5.83579 5.5 5.5 5.83579 5.5 6.25V19.75C5.5 20.1642 5.83579 20.5 6.25 20.5H14V18.25C14 17.0074 15.0074 16 16.25 16H18.5V6.25C18.5 5.83579 18.1642 5.5 17.75 5.5H6.25ZM16.25 17.5C15.8358 17.5 15.5 17.8358 15.5 18.25V19.6895L17.6895 17.5H16.25ZM11.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.0039ZM15.75 12C16.1642 12 16.5 12.3358 16.5 12.75C16.5 13.1642 16.1642 13.5 15.75 13.5H8.25C7.83579 13.5 7.5 13.1642 7.5 12.75C7.5 12.3358 7.83579 12 8.25 12H15.75ZM15.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_24_regular.svg";

Details

NameNotepad
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_notepad_24_regular.svg
Filled fileic_fluent_notepad_24_filled.svg
React componentsNotepad24Regular, Notepad24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

remindersketchjournaldiarytext

Related icons