Text Add Space After icon
Used in adding spacing before or after blocks of text. The Text Add Space After 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 Add Space After 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 { TextAddSpaceAfter24Regular, TextAddSpaceAfter24Filled } from "@fluentui/react-icons";
export function Example() {
return <TextAddSpaceAfter24Regular aria-label="Text Add Space After" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_text_add_space_after_24_regular.svg" width="24" height="24" alt="Text Add Space After"> 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="M3 6.75C3 6.33579 3.33579 6 3.75 6H20.25C20.6642 6 21 6.33579 21 6.75C21 7.16421 20.6642 7.5 20.25 7.5H3.75C3.33579 7.5 3 7.16421 3 6.75ZM3 12.75C3 12.3358 3.33579 12 3.75 12H20.25C20.6642 12 21 12.3358 21 12.75C21 13.1642 20.6642 13.5 20.25 13.5H3.75C3.33579 13.5 3 13.1642 3 12.75ZM9.46967 18.2197C9.17678 18.5126 9.17678 18.9874 9.46967 19.2803C9.76256 19.5732 10.2374 19.5732 10.5303 19.2803L12 17.8107L13.4697 19.2803C13.7626 19.5732 14.2374 19.5732 14.5303 19.2803C14.8232 18.9874 14.8232 18.5126 14.5303 18.2197L12.5303 16.2197C12.2374 15.9268 11.7626 15.9268 11.4697 16.2197L9.46967 18.2197Z" 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_add_space_after_24_regular.svg";Details
| Name | Text Add Space After |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_text_add_space_after_24_regular.svg |
| Filled file | ic_fluent_text_add_space_after_24_filled.svg |
| React components | TextAddSpaceAfter24Regular, TextAddSpaceAfter24Filled |
| License | MIT (© Microsoft Corporation) |