Document Endnote icon
Used to represent general file types and actions. The Document Endnote 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 Document Endnote 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 { DocumentEndnote24Regular, DocumentEndnote24Filled } from "@fluentui/react-icons";
export function Example() {
return <DocumentEndnote24Regular aria-label="Document Endnote" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_document_endnote_24_regular.svg" width="24" height="24" alt="Document Endnote"> 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="M5.5 4.25C5.5 3.83579 5.83579 3.5 6.25 3.5H12V8C12 9.10457 12.8954 10 14 10H18.5V19.75C18.5 20.1642 18.1642 20.5 17.75 20.5H13V22H17.75C18.9926 22 20 20.9926 20 19.75V9.66421C20 9.20009 19.8156 8.75497 19.4874 8.42678L13.5732 2.51256C13.245 2.18437 12.7999 2 12.3358 2H6.25C5.00736 2 4 3.00736 4 4.25V12H5.5V4.25ZM13.5 8V4.56066L17.4393 8.5H14C13.7239 8.5 13.5 8.27614 13.5 8ZM4.5 13.75C4.5 14.1642 4.16421 14.5 3.75 14.5H2.5V21.5H3.75C4.16421 21.5 4.5 21.8358 4.5 22.25C4.5 22.6642 4.16421 23 3.75 23H2.5C1.67157 23 1 22.3284 1 21.5V14.5C1 13.6716 1.67157 13 2.5 13H3.75C4.16421 13 4.5 13.3358 4.5 13.75ZM9.25 14.5C8.83579 14.5 8.5 14.1642 8.5 13.75C8.5 13.3358 8.83579 13 9.25 13H10.5C11.3284 13 12 13.6716 12 14.5V21.5C12 22.3284 11.3284 23 10.5 23H9.25C8.83579 23 8.5 22.6642 8.5 22.25C8.5 21.8358 8.83579 21.5 9.25 21.5H10.5V14.5H9.25ZM6.5 16.75C6.91421 16.75 7.25 17.0858 7.25 17.5V21C7.25 21.4142 6.91421 21.75 6.5 21.75C6.08579 21.75 5.75 21.4142 5.75 21V17.5C5.75 17.0858 6.08579 16.75 6.5 16.75ZM6.5 16C6.91421 16 7.25 15.6642 7.25 15.25C7.25 14.8358 6.91421 14.5 6.5 14.5C6.08579 14.5 5.75 14.8358 5.75 15.25C5.75 15.6642 6.08579 16 6.5 16Z" 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/document_endnote_24_regular.svg";Details
| Name | Document Endnote |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_document_endnote_24_regular.svg |
| Filled file | ic_fluent_document_endnote_24_filled.svg |
| React components | DocumentEndnote24Regular, DocumentEndnote24Filled |
| License | MIT (© Microsoft Corporation) |