Highlight Accent icon

Used to highlight content in edit scenarios. The Highlight Accent icon is part of Microsoft's Fluent UI System Icons, available here in the filled 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.

Filled

SVG

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

export function Example() {
  return <HighlightAccent24Filled aria-label="Highlight Accent" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_highlight_accent_24_filled.svg" width="24" height="24" alt="Highlight 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="M20.0029 4L20 7.75021L19.9929 7.85186C19.9439 8.20616 19.6472 8.48249 19.2829 8.5H4.73692L4.64823 8.49403C4.28215 8.44437 4 8.13058 4 7.75088L4 4H20.0029ZM15.507 13.5H8.49993L8.5 21L15.0758 17.8937C15.3064 17.7858 15.4642 17.5695 15.5 17.3222L15.5078 17.2145L15.507 13.5Z" 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/highlight_accent_24_filled.svg";

Details

NameHighlight Accent
StylesFilled
Size24 × 24 px (scalable SVG)
Filled fileic_fluent_highlight_accent_24_filled.svg
React componentsHighlightAccent24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

createeditdrawfocussave

Related icons