Text Italic icon
Used in general type creation and editing scenarios. Contains locale specific variants. The Text Italic 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 Italic 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 { TextItalic24Regular, TextItalic24Filled } from "@fluentui/react-icons";
export function Example() {
return <TextItalic24Regular aria-label="Text Italic" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_text_italic_24_regular.svg" width="24" height="24" alt="Text Italic"> 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="M18.75 4C19.1642 4 19.5 4.33579 19.5 4.75C19.5 5.16421 19.1642 5.5 18.75 5.5H15.2676L10.3359 18.5H13.75C14.1642 18.5 14.5 18.8358 14.5 19.25C14.5 19.6642 14.1642 20 13.75 20H5.25C4.83579 20 4.5 19.6642 4.5 19.25C4.5 18.8358 4.83579 18.5 5.25 18.5H8.73242L13.6641 5.5H10.25C9.83579 5.5 9.5 5.16421 9.5 4.75C9.5 4.33579 9.83579 4 10.25 4H18.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/text_italic_24_regular.svg";Details
| Name | Text Italic |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_text_italic_24_regular.svg |
| Filled file | ic_fluent_text_italic_24_filled.svg |
| React components | TextItalic24Regular, TextItalic24Filled |
| License | MIT (© Microsoft Corporation) |