Text Paragraph icon
Used in general type creation and editing scenarios. The Text Paragraph 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 Text Paragraph 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 { TextParagraph24Regular, TextParagraph24Filled } from "@fluentui/react-icons";
export function Example() {
return <TextParagraph24Regular aria-label="Text Paragraph" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_text_paragraph_24_regular.svg" width="24" height="24" alt="Text Paragraph"> 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.5 8C14.1528 8 12.25 9.90279 12.25 12.25C12.25 14.5972 14.1528 16.5 16.5 16.5H17V21.25C17 21.6642 17.3358 22 17.75 22C18.1642 22 18.5 21.6642 18.5 21.25V9.5H19.5V21.25C19.5 21.6642 19.8358 22 20.25 22C20.6642 22 21 21.6642 21 21.25V9.5H21.25C21.6642 9.5 22 9.16421 22 8.75C22 8.33579 21.6642 8 21.25 8H16.5ZM16.5 9.5H17V15H16.5C14.9812 15 13.75 13.7688 13.75 12.25C13.75 10.7312 14.9812 9.5 16.5 9.5ZM2.75 5C2.33579 5 2 5.33579 2 5.75C2 6.16421 2.33579 6.5 2.75 6.5H21.25C21.6642 6.5 22 6.16421 22 5.75C22 5.33579 21.6642 5 21.25 5H2.75ZM2.75 10C2.33579 10 2 10.3358 2 10.75C2 11.1642 2.33579 11.5 2.75 11.5H11.3032C11.3789 10.9704 11.5337 10.4663 11.7552 10H2.75ZM12.027 15H2.75C2.33579 15 2 15.3358 2 15.75C2 16.1642 2.33579 16.5 2.75 16.5H13.4172C12.8616 16.0963 12.3883 15.5864 12.027 15Z" 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/text_paragraph_24_regular.svg";Details
| Name | Text Paragraph |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_text_paragraph_24_regular.svg |
| Filled file | ic_fluent_text_paragraph_24_filled.svg |
| React components | TextParagraph24Regular, TextParagraph24Filled |
| License | MIT (© Microsoft Corporation) |