Likert icon

Used to represent a Likert item (scale of agreement/disagreement). The Likert 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.

Regular (outlined)

SVG

Filled

SVG

Use the Likert 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 { Likert24Regular, Likert24Filled } from "@fluentui/react-icons";

export function Example() {
  return <Likert24Regular aria-label="Likert" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_likert_24_regular.svg" width="24" height="24" alt="Likert">

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="M10.75 8.25C10.75 8.80228 10.3023 9.25 9.75 9.25C9.19772 9.25 8.75 8.80228 8.75 8.25C8.75 7.69772 9.19772 7.25 9.75 7.25C10.3023 7.25 10.75 7.69772 10.75 8.25ZM13.5 8.25C13.5 8.80228 13.0523 9.25 12.5 9.25C11.9477 9.25 11.5 8.80228 11.5 8.25C11.5 7.69772 11.9477 7.25 12.5 7.25C13.0523 7.25 13.5 7.69772 13.5 8.25ZM16.5 8.25C16.5 8.80228 16.0523 9.25 15.5 9.25C14.9477 9.25 14.5 8.80228 14.5 8.25C14.5 7.69772 14.9477 7.25 15.5 7.25C16.0523 7.25 16.5 7.69772 16.5 8.25ZM19.5 8.25C19.5 8.80228 19.0523 9.25 18.5 9.25C17.9477 9.25 17.5 8.80228 17.5 8.25C17.5 7.69772 17.9477 7.25 18.5 7.25C19.0523 7.25 19.5 7.69772 19.5 8.25ZM9.75 16.75C10.3023 16.75 10.75 16.3023 10.75 15.75C10.75 15.1977 10.3023 14.75 9.75 14.75C9.19772 14.75 8.75 15.1977 8.75 15.75C8.75 16.3023 9.19772 16.75 9.75 16.75ZM12.5 16.75C13.0523 16.75 13.5 16.3023 13.5 15.75C13.5 15.1977 13.0523 14.75 12.5 14.75C11.9477 14.75 11.5 15.1977 11.5 15.75C11.5 16.3023 11.9477 16.75 12.5 16.75ZM15.5 16.75C16.0523 16.75 16.5 16.3023 16.5 15.75C16.5 15.1977 16.0523 14.75 15.5 14.75C14.9477 14.75 14.5 15.1977 14.5 15.75C14.5 16.3023 14.9477 16.75 15.5 16.75ZM18.5 16.75C19.0523 16.75 19.5 16.3023 19.5 15.75C19.5 15.1977 19.0523 14.75 18.5 14.75C17.9477 14.75 17.5 15.1977 17.5 15.75C17.5 16.3023 17.9477 16.75 18.5 16.75ZM5 4C3.34315 4 2 5.34315 2 7V17C2 18.6569 3.34315 20 5 20H19C20.6569 20 22 18.6569 22 17V7C22 5.34315 20.6569 4 19 4H5ZM19 5.5C19.8284 5.5 20.5 6.17157 20.5 7V11.25H7.5V5.5H19ZM20.5 12.75V17C20.5 17.8284 19.8284 18.5 19 18.5H7.5V12.75H20.5ZM6 11.25H3.5V7C3.5 6.17157 4.17157 5.5 5 5.5H6V11.25ZM3.5 12.75H6V18.5H5C4.17157 18.5 3.5 17.8284 3.5 17V12.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/likert_24_regular.svg";

Details

NameLikert
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_likert_24_regular.svg
Filled fileic_fluent_likert_24_filled.svg
React componentsLikert24Regular, Likert24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

questionnaireformagreedisagree

Related icons