Color Line Accent icon

Used in edit mode for color changes - specifically the background for color reflection in UI. The Color Line Accent icon is part of Microsoft's Fluent UI System Icons, available here in the regular (outlined) style 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.

Regular (outlined)

SVG

Use the Color Line 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 { ColorLineAccent24Regular } from "@fluentui/react-icons";

export function Example() {
  return <ColorLineAccent24Regular aria-label="Color Line Accent" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_color_line_accent_24_regular.svg" width="24" height="24" alt="Color Line 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.00432 15.6313C4.01418 15.7809 4.04087 15.9297 4.08444 16.0748C4.40199 17.1328 5.51705 17.733 6.57499 17.4154L10.868 16.1268C11.294 15.9989 11.6883 15.7852 12.027 15.5H19.5C20.0523 15.5 20.5 15.9477 20.5 16.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5V16.5C3.5 16.1281 3.70304 15.8036 4.00432 15.6313Z" 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/color_line_accent_24_regular.svg";

Details

NameColor Line Accent
StylesRegular (outlined)
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_color_line_accent_24_regular.svg
React componentsColorLineAccent24Regular
LicenseMIT (© Microsoft Corporation)

Keywords

coloreditpaintpalette

Related icons