checkmark starburst icon
checkmark-starburst-28-regular from Fluent UI System Icons by Microsoft Corporation · 28 Regular · MIT Free for personal and commercial use.
- Name
- checkmark-starburst-28-regular
- Set
- Fluent UI System Icons
- Style
- 28 Regular
- Viewbox
- 28×28
- License
- MIT
11 other variants in Fluent UI System Icons
checkmark-starburst-16-filledcheckmark-starburst-16-regularcheckmark-starburst-20-filledcheckmark-starburst-20-regularcheckmark-starburst-24-filledcheckmark-starburst-24-regularcheckmark-starburst-28-filledcheckmark-starburst-32-filledcheckmark-starburst-32-regularcheckmark-starburst-48-filledcheckmark-starburst-48-regular
Related icons in Fluent UI System Icons
Use the checkmark starburst icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 28 28"><path fill="currentColor" d="M15.722 2.403a3.75 3.75 0 0 1 5.259 2.179l.246.751a2.25 2.25 0 0 0 1.438 1.437l.751.247a3.75 3.75 0 0 1 2.178 5.258l-.358.705a2.25 2.25 0 0 0 0 2.034l.358.705a3.75 3.75 0 0 1-2.178 5.259l-.751.246a2.25 2.25 0 0 0-1.438 1.438l-.247.751a3.75 3.75 0 0 1-5.258 2.178l-.705-.358a2.25 2.25 0 0 0-2.034 0l-.705.358a3.75 3.75 0 0 1-5.258-2.178l-.247-.75a2.25 2.25 0 0 0-1.437-1.44l-.751-.245a3.75 3.75 0 0 1-2.179-5.26l.358-.704a2.25 2.25 0 0 0 0-2.034l-.358-.705a3.75 3.75 0 0 1 2.179-5.258l.751-.247a2.25 2.25 0 0 0 1.437-1.437l.247-.751a3.75 3.75 0 0 1 5.258-2.179l.705.358a2.25 2.25 0 0 0 2.034 0zm3.833 2.646A2.25 2.25 0 0 0 16.4 3.74l-.705.358a3.75 3.75 0 0 1-3.39 0l-.704-.358a2.25 2.25 0 0 0-3.156 1.31l-.246.75a3.75 3.75 0 0 1-2.396 2.397l-.751.246a2.25 2.25 0 0 0-1.308 3.156l.358.705a3.75 3.75 0 0 1 0 3.39l-.358.704a2.25 2.25 0 0 0 1.308 3.155l.75.246A3.75 3.75 0 0 1 8.2 22.195l.246.751a2.25 2.25 0 0 0 3.156 1.307l.705-.358a3.75 3.75 0 0 1 3.39 0l.704.358a2.25 2.25 0 0 0 3.155-1.307l.246-.75a3.75 3.75 0 0 1 2.397-2.398l.751-.246a2.25 2.25 0 0 0 1.307-3.155l-.358-.705a3.75 3.75 0 0 1 0-3.39l.358-.704a2.25 2.25 0 0 0-1.307-3.156l-.75-.246A3.75 3.75 0 0 1 19.8 5.8zm-1.085 5.17a.75.75 0 0 1 1.06 1.061l-6.5 6.5a.75.75 0 0 1-1.06 0l-3.5-3.5a.75.75 0 0 1 1.06-1.06l2.97 2.97z"/></svg>
React
import type { SVGProps } from "react";
export function FluentCheckmarkStarburst28Regular(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 28 28"><path fill="currentColor" d="M15.722 2.403a3.75 3.75 0 0 1 5.259 2.179l.246.751a2.25 2.25 0 0 0 1.438 1.437l.751.247a3.75 3.75 0 0 1 2.178 5.258l-.358.705a2.25 2.25 0 0 0 0 2.034l.358.705a3.75 3.75 0 0 1-2.178 5.259l-.751.246a2.25 2.25 0 0 0-1.438 1.438l-.247.751a3.75 3.75 0 0 1-5.258 2.178l-.705-.358a2.25 2.25 0 0 0-2.034 0l-.705.358a3.75 3.75 0 0 1-5.258-2.178l-.247-.75a2.25 2.25 0 0 0-1.437-1.44l-.751-.245a3.75 3.75 0 0 1-2.179-5.26l.358-.704a2.25 2.25 0 0 0 0-2.034l-.358-.705a3.75 3.75 0 0 1 2.179-5.258l.751-.247a2.25 2.25 0 0 0 1.437-1.437l.247-.751a3.75 3.75 0 0 1 5.258-2.179l.705.358a2.25 2.25 0 0 0 2.034 0zm3.833 2.646A2.25 2.25 0 0 0 16.4 3.74l-.705.358a3.75 3.75 0 0 1-3.39 0l-.704-.358a2.25 2.25 0 0 0-3.156 1.31l-.246.75a3.75 3.75 0 0 1-2.396 2.397l-.751.246a2.25 2.25 0 0 0-1.308 3.156l.358.705a3.75 3.75 0 0 1 0 3.39l-.358.704a2.25 2.25 0 0 0 1.308 3.155l.75.246A3.75 3.75 0 0 1 8.2 22.195l.246.751a2.25 2.25 0 0 0 3.156 1.307l.705-.358a3.75 3.75 0 0 1 3.39 0l.704.358a2.25 2.25 0 0 0 3.155-1.307l.246-.75a3.75 3.75 0 0 1 2.397-2.398l.751-.246a2.25 2.25 0 0 0 1.307-3.155l-.358-.705a3.75 3.75 0 0 1 0-3.39l.358-.704a2.25 2.25 0 0 0-1.307-3.156l-.75-.246A3.75 3.75 0 0 1 19.8 5.8zm-1.085 5.17a.75.75 0 0 1 1.06 1.061l-6.5 6.5a.75.75 0 0 1-1.06 0l-3.5-3.5a.75.75 0 0 1 1.06-1.06l2.97 2.97z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 28 28"><path fill="currentColor" d="M15.722 2.403a3.75 3.75 0 0 1 5.259 2.179l.246.751a2.25 2.25 0 0 0 1.438 1.437l.751.247a3.75 3.75 0 0 1 2.178 5.258l-.358.705a2.25 2.25 0 0 0 0 2.034l.358.705a3.75 3.75 0 0 1-2.178 5.259l-.751.246a2.25 2.25 0 0 0-1.438 1.438l-.247.751a3.75 3.75 0 0 1-5.258 2.178l-.705-.358a2.25 2.25 0 0 0-2.034 0l-.705.358a3.75 3.75 0 0 1-5.258-2.178l-.247-.75a2.25 2.25 0 0 0-1.437-1.44l-.751-.245a3.75 3.75 0 0 1-2.179-5.26l.358-.704a2.25 2.25 0 0 0 0-2.034l-.358-.705a3.75 3.75 0 0 1 2.179-5.258l.751-.247a2.25 2.25 0 0 0 1.437-1.437l.247-.751a3.75 3.75 0 0 1 5.258-2.179l.705.358a2.25 2.25 0 0 0 2.034 0zm3.833 2.646A2.25 2.25 0 0 0 16.4 3.74l-.705.358a3.75 3.75 0 0 1-3.39 0l-.704-.358a2.25 2.25 0 0 0-3.156 1.31l-.246.75a3.75 3.75 0 0 1-2.396 2.397l-.751.246a2.25 2.25 0 0 0-1.308 3.156l.358.705a3.75 3.75 0 0 1 0 3.39l-.358.704a2.25 2.25 0 0 0 1.308 3.155l.75.246A3.75 3.75 0 0 1 8.2 22.195l.246.751a2.25 2.25 0 0 0 3.156 1.307l.705-.358a3.75 3.75 0 0 1 3.39 0l.704.358a2.25 2.25 0 0 0 3.155-1.307l.246-.75a3.75 3.75 0 0 1 2.397-2.398l.751-.246a2.25 2.25 0 0 0 1.307-3.155l-.358-.705a3.75 3.75 0 0 1 0-3.39l.358-.704a2.25 2.25 0 0 0-1.307-3.156l-.75-.246A3.75 3.75 0 0 1 19.8 5.8zm-1.085 5.17a.75.75 0 0 1 1.06 1.061l-6.5 6.5a.75.75 0 0 1-1.06 0l-3.5-3.5a.75.75 0 0 1 1.06-1.06l2.97 2.97z"/></svg> </template>
CSS
.icon-checkmark-starburst-28-regular {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2028%2028%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M15.722%202.403a3.75%203.75%200%200%201%205.259%202.179l.246.751a2.25%202.25%200%200%200%201.438%201.437l.751.247a3.75%203.75%200%200%201%202.178%205.258l-.358.705a2.25%202.25%200%200%200%200%202.034l.358.705a3.75%203.75%200%200%201-2.178%205.259l-.751.246a2.25%202.25%200%200%200-1.438%201.438l-.247.751a3.75%203.75%200%200%201-5.258%202.178l-.705-.358a2.25%202.25%200%200%200-2.034%200l-.705.358a3.75%203.75%200%200%201-5.258-2.178l-.247-.75a2.25%202.25%200%200%200-1.437-1.44l-.751-.245a3.75%203.75%200%200%201-2.179-5.26l.358-.704a2.25%202.25%200%200%200%200-2.034l-.358-.705a3.75%203.75%200%200%201%202.179-5.258l.751-.247a2.25%202.25%200%200%200%201.437-1.437l.247-.751a3.75%203.75%200%200%201%205.258-2.179l.705.358a2.25%202.25%200%200%200%202.034%200zm3.833%202.646A2.25%202.25%200%200%200%2016.4%203.74l-.705.358a3.75%203.75%200%200%201-3.39%200l-.704-.358a2.25%202.25%200%200%200-3.156%201.31l-.246.75a3.75%203.75%200%200%201-2.396%202.397l-.751.246a2.25%202.25%200%200%200-1.308%203.156l.358.705a3.75%203.75%200%200%201%200%203.39l-.358.704a2.25%202.25%200%200%200%201.308%203.155l.75.246A3.75%203.75%200%200%201%208.2%2022.195l.246.751a2.25%202.25%200%200%200%203.156%201.307l.705-.358a3.75%203.75%200%200%201%203.39%200l.704.358a2.25%202.25%200%200%200%203.155-1.307l.246-.75a3.75%203.75%200%200%201%202.397-2.398l.751-.246a2.25%202.25%200%200%200%201.307-3.155l-.358-.705a3.75%203.75%200%200%201%200-3.39l.358-.704a2.25%202.25%200%200%200-1.307-3.156l-.75-.246A3.75%203.75%200%200%201%2019.8%205.8zm-1.085%205.17a.75.75%200%200%201%201.06%201.061l-6.5%206.5a.75.75%200%200%201-1.06%200l-3.5-3.5a.75.75%200%200%201%201.06-1.06l2.97%202.97z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2028%2028%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M15.722%202.403a3.75%203.75%200%200%201%205.259%202.179l.246.751a2.25%202.25%200%200%200%201.438%201.437l.751.247a3.75%203.75%200%200%201%202.178%205.258l-.358.705a2.25%202.25%200%200%200%200%202.034l.358.705a3.75%203.75%200%200%201-2.178%205.259l-.751.246a2.25%202.25%200%200%200-1.438%201.438l-.247.751a3.75%203.75%200%200%201-5.258%202.178l-.705-.358a2.25%202.25%200%200%200-2.034%200l-.705.358a3.75%203.75%200%200%201-5.258-2.178l-.247-.75a2.25%202.25%200%200%200-1.437-1.44l-.751-.245a3.75%203.75%200%200%201-2.179-5.26l.358-.704a2.25%202.25%200%200%200%200-2.034l-.358-.705a3.75%203.75%200%200%201%202.179-5.258l.751-.247a2.25%202.25%200%200%200%201.437-1.437l.247-.751a3.75%203.75%200%200%201%205.258-2.179l.705.358a2.25%202.25%200%200%200%202.034%200zm3.833%202.646A2.25%202.25%200%200%200%2016.4%203.74l-.705.358a3.75%203.75%200%200%201-3.39%200l-.704-.358a2.25%202.25%200%200%200-3.156%201.31l-.246.75a3.75%203.75%200%200%201-2.396%202.397l-.751.246a2.25%202.25%200%200%200-1.308%203.156l.358.705a3.75%203.75%200%200%201%200%203.39l-.358.704a2.25%202.25%200%200%200%201.308%203.155l.75.246A3.75%203.75%200%200%201%208.2%2022.195l.246.751a2.25%202.25%200%200%200%203.156%201.307l.705-.358a3.75%203.75%200%200%201%203.39%200l.704.358a2.25%202.25%200%200%200%203.155-1.307l.246-.75a3.75%203.75%200%200%201%202.397-2.398l.751-.246a2.25%202.25%200%200%200%201.307-3.155l-.358-.705a3.75%203.75%200%200%201%200-3.39l.358-.704a2.25%202.25%200%200%200-1.307-3.156l-.75-.246A3.75%203.75%200%200%201%2019.8%205.8zm-1.085%205.17a.75.75%200%200%201%201.06%201.061l-6.5%206.5a.75.75%200%200%201-1.06%200l-3.5-3.5a.75.75%200%200%201%201.06-1.06l2.97%202.97z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/checkmark-starburst-28-regular.svg?color=%231a73e8&size=48