Star Checkmark icon

Used to represent items a user is following. The Star Checkmark 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 Star Checkmark 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 { StarCheckmark24Regular, StarCheckmark24Filled } from "@fluentui/react-icons";

export function Example() {
  return <StarCheckmark24Regular aria-label="Star Checkmark" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_star_checkmark_24_regular.svg" width="24" height="24" alt="Star Checkmark">

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="M13.209 3.10312C12.7138 2.09974 11.283 2.09975 10.7878 3.10312L8.42988 7.88085L3.15735 8.64699C2.05005 8.80789 1.60791 10.1687 2.40916 10.9497L6.2244 14.6686L5.32374 19.9198C5.13459 21.0227 6.29213 21.8637 7.28252 21.343L11.2414 19.2617C11.1007 18.7605 11.0185 18.2348 11.0028 17.6925L6.85353 19.8739L7.71614 14.8445C7.79125 14.4065 7.64606 13.9597 7.32788 13.6495L3.67382 10.0877L8.72361 9.35392C9.16332 9.29002 9.54344 9.01385 9.74008 8.61541L11.9984 4.03952L14.2568 8.61541C14.4534 9.01385 14.8335 9.29002 15.2732 9.35392L20.323 10.0877L19.1656 11.2159C19.7016 11.3576 20.2104 11.566 20.6827 11.8318L21.5877 10.9497C22.3889 10.1687 21.9468 8.80789 20.8395 8.64699L15.567 7.88085L13.209 3.10312ZM23 17.5C23 20.5376 20.5376 23 17.5 23C14.4624 23 12 20.5376 12 17.5C12 14.4624 14.4624 12 17.5 12C20.5376 12 23 14.4624 23 17.5ZM20.8536 15.1464C20.6583 14.9512 20.3417 14.9512 20.1464 15.1464L16.5 18.7929L14.8536 17.1464C14.6583 16.9512 14.3417 16.9512 14.1464 17.1464C13.9512 17.3417 13.9512 17.6583 14.1464 17.8536L16.1464 19.8536C16.3417 20.0488 16.6583 20.0488 16.8536 19.8536L20.8536 15.8536C21.0488 15.6583 21.0488 15.3417 20.8536 15.1464Z" 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/star_checkmark_24_regular.svg";

Details

NameStar Checkmark
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_star_checkmark_24_regular.svg
Filled fileic_fluent_star_checkmark_24_filled.svg
React componentsStarCheckmark24Regular, StarCheckmark24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

favoritefollowing

Related icons