Text Color Accent icon
Used for color selection in Text Color. The Text Color Accent 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 Color Accent 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 { TextColorAccent24Regular, TextColorAccent24Filled } from "@fluentui/react-icons";
export function Example() {
return <TextColorAccent24Regular aria-label="Text Color Accent" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_text_color_accent_24_regular.svg" width="24" height="24" alt="Text Color Accent"> 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="M4.5 16.75a.75.75 0 0 1 .75-.75h12.5a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-.75.75H5.25a.75.75 0 0 1-.75-.75v-3Z" 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_color_accent_24_regular.svg";Details
| Name | Text Color Accent |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_text_color_accent_24_regular.svg |
| Filled file | ic_fluent_text_color_accent_24_filled.svg |
| React components | TextColorAccent24Regular, TextColorAccent24Filled |
| License | MIT (© Microsoft Corporation) |