circle multiple hint checkmark icon
circle-multiple-hint-checkmark-32-filled from Fluent UI System Icons by Microsoft Corporation · 32 Filled · MIT Free for personal and commercial use.
- Name
- circle-multiple-hint-checkmark-32-filled
- Set
- Fluent UI System Icons
- Style
- 32 Filled
- Viewbox
- 32×32
- License
- MIT
11 other variants in Fluent UI System Icons
circle-multiple-hint-checkmark-16-filledcircle-multiple-hint-checkmark-16-regularcircle-multiple-hint-checkmark-20-filledcircle-multiple-hint-checkmark-20-regularcircle-multiple-hint-checkmark-24-filledcircle-multiple-hint-checkmark-24-regularcircle-multiple-hint-checkmark-28-filledcircle-multiple-hint-checkmark-28-regularcircle-multiple-hint-checkmark-32-regularcircle-multiple-hint-checkmark-48-filledcircle-multiple-hint-checkmark-48-regular
The same icon in other sets
Related icons in Fluent UI System Icons
circle-edit-20-filledcircle-eraser-20-filledcircle-half-fill-12-filledcircle-highlight-20-filledcircle-hint-12-filledcircle-hint-cursor-16-filledcircle-hint-dismiss-16-filledcircle-hint-half-vertical-16-filledcircle-image-16-filledcircle-line-12-filledcircle-multiple-concentric-16-filledcircle-multiple-subtract-checkmark-20-filledcircle-off-16-filledcircle-shadow-20-filledcircle-small-20-filledcircle-sparkle-16-filled
Use the circle multiple hint checkmark icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M13.28 1.262a10 10 0 0 1 3.086 1.3a1 1 0 1 1-1.072 1.688a8 8 0 0 0-2.473-1.041a1 1 0 1 1 .458-1.947m4.84 4.142a1 1 0 0 1 1.376.324a10 10 0 0 1 1.264 3.101q.019.086.023.17h.014q.05.25.089.502q-1.021.01-1.995.192a8 8 0 0 0-1.095-2.912a1 1 0 0 1 .323-1.377M9.69 18.894a8 8 0 0 1-1.798-.521a8 8 0 0 1-1.193-.624a1 1 0 1 0-1.072 1.689A10.1 10.1 0 0 0 9.5 20.889q.01-1.021.191-1.995m.329-16.899a1 1 0 0 1-.758 1.194a8 8 0 0 0-2.484 1.012a1 1 0 1 1-1.053-1.7a10 10 0 0 1 3.101-1.264a1 1 0 0 1 1.194.758M3.939 5.322a1 1 0 0 1 .309 1.38a8 8 0 0 0-1.041 2.474a1 1 0 1 1-1.947-.458a10 10 0 0 1 1.3-3.087a1 1 0 0 1 1.38-.309m-1.946 6.654a1 1 0 0 1 1.194.758A8 8 0 0 0 4.2 15.218a1 1 0 1 1-1.7 1.053a10 10 0 0 1-1.264-3.101a1 1 0 0 1 .758-1.194M31 21c0 5.523-4.477 10-10 10s-10-4.477-10-10s4.477-10 10-10s10 4.477 10 10m-4.793-1.793a1 1 0 0 0-1.414-1.414L20 22.586l-2.293-2.293a1 1 0 0 0-1.414 1.414l3 3a1 1 0 0 0 1.414 0z"/></svg>
React
import type { SVGProps } from "react";
export function FluentCircleMultipleHintCheckmark32Filled(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M13.28 1.262a10 10 0 0 1 3.086 1.3a1 1 0 1 1-1.072 1.688a8 8 0 0 0-2.473-1.041a1 1 0 1 1 .458-1.947m4.84 4.142a1 1 0 0 1 1.376.324a10 10 0 0 1 1.264 3.101q.019.086.023.17h.014q.05.25.089.502q-1.021.01-1.995.192a8 8 0 0 0-1.095-2.912a1 1 0 0 1 .323-1.377M9.69 18.894a8 8 0 0 1-1.798-.521a8 8 0 0 1-1.193-.624a1 1 0 1 0-1.072 1.689A10.1 10.1 0 0 0 9.5 20.889q.01-1.021.191-1.995m.329-16.899a1 1 0 0 1-.758 1.194a8 8 0 0 0-2.484 1.012a1 1 0 1 1-1.053-1.7a10 10 0 0 1 3.101-1.264a1 1 0 0 1 1.194.758M3.939 5.322a1 1 0 0 1 .309 1.38a8 8 0 0 0-1.041 2.474a1 1 0 1 1-1.947-.458a10 10 0 0 1 1.3-3.087a1 1 0 0 1 1.38-.309m-1.946 6.654a1 1 0 0 1 1.194.758A8 8 0 0 0 4.2 15.218a1 1 0 1 1-1.7 1.053a10 10 0 0 1-1.264-3.101a1 1 0 0 1 .758-1.194M31 21c0 5.523-4.477 10-10 10s-10-4.477-10-10s4.477-10 10-10s10 4.477 10 10m-4.793-1.793a1 1 0 0 0-1.414-1.414L20 22.586l-2.293-2.293a1 1 0 0 0-1.414 1.414l3 3a1 1 0 0 0 1.414 0z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M13.28 1.262a10 10 0 0 1 3.086 1.3a1 1 0 1 1-1.072 1.688a8 8 0 0 0-2.473-1.041a1 1 0 1 1 .458-1.947m4.84 4.142a1 1 0 0 1 1.376.324a10 10 0 0 1 1.264 3.101q.019.086.023.17h.014q.05.25.089.502q-1.021.01-1.995.192a8 8 0 0 0-1.095-2.912a1 1 0 0 1 .323-1.377M9.69 18.894a8 8 0 0 1-1.798-.521a8 8 0 0 1-1.193-.624a1 1 0 1 0-1.072 1.689A10.1 10.1 0 0 0 9.5 20.889q.01-1.021.191-1.995m.329-16.899a1 1 0 0 1-.758 1.194a8 8 0 0 0-2.484 1.012a1 1 0 1 1-1.053-1.7a10 10 0 0 1 3.101-1.264a1 1 0 0 1 1.194.758M3.939 5.322a1 1 0 0 1 .309 1.38a8 8 0 0 0-1.041 2.474a1 1 0 1 1-1.947-.458a10 10 0 0 1 1.3-3.087a1 1 0 0 1 1.38-.309m-1.946 6.654a1 1 0 0 1 1.194.758A8 8 0 0 0 4.2 15.218a1 1 0 1 1-1.7 1.053a10 10 0 0 1-1.264-3.101a1 1 0 0 1 .758-1.194M31 21c0 5.523-4.477 10-10 10s-10-4.477-10-10s4.477-10 10-10s10 4.477 10 10m-4.793-1.793a1 1 0 0 0-1.414-1.414L20 22.586l-2.293-2.293a1 1 0 0 0-1.414 1.414l3 3a1 1 0 0 0 1.414 0z"/></svg> </template>
CSS
.icon-circle-multiple-hint-checkmark-32-filled {
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%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M13.28%201.262a10%2010%200%200%201%203.086%201.3a1%201%200%201%201-1.072%201.688a8%208%200%200%200-2.473-1.041a1%201%200%201%201%20.458-1.947m4.84%204.142a1%201%200%200%201%201.376.324a10%2010%200%200%201%201.264%203.101q.019.086.023.17h.014q.05.25.089.502q-1.021.01-1.995.192a8%208%200%200%200-1.095-2.912a1%201%200%200%201%20.323-1.377M9.69%2018.894a8%208%200%200%201-1.798-.521a8%208%200%200%201-1.193-.624a1%201%200%201%200-1.072%201.689A10.1%2010.1%200%200%200%209.5%2020.889q.01-1.021.191-1.995m.329-16.899a1%201%200%200%201-.758%201.194a8%208%200%200%200-2.484%201.012a1%201%200%201%201-1.053-1.7a10%2010%200%200%201%203.101-1.264a1%201%200%200%201%201.194.758M3.939%205.322a1%201%200%200%201%20.309%201.38a8%208%200%200%200-1.041%202.474a1%201%200%201%201-1.947-.458a10%2010%200%200%201%201.3-3.087a1%201%200%200%201%201.38-.309m-1.946%206.654a1%201%200%200%201%201.194.758A8%208%200%200%200%204.2%2015.218a1%201%200%201%201-1.7%201.053a10%2010%200%200%201-1.264-3.101a1%201%200%200%201%20.758-1.194M31%2021c0%205.523-4.477%2010-10%2010s-10-4.477-10-10s4.477-10%2010-10s10%204.477%2010%2010m-4.793-1.793a1%201%200%200%200-1.414-1.414L20%2022.586l-2.293-2.293a1%201%200%200%200-1.414%201.414l3%203a1%201%200%200%200%201.414%200z%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%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M13.28%201.262a10%2010%200%200%201%203.086%201.3a1%201%200%201%201-1.072%201.688a8%208%200%200%200-2.473-1.041a1%201%200%201%201%20.458-1.947m4.84%204.142a1%201%200%200%201%201.376.324a10%2010%200%200%201%201.264%203.101q.019.086.023.17h.014q.05.25.089.502q-1.021.01-1.995.192a8%208%200%200%200-1.095-2.912a1%201%200%200%201%20.323-1.377M9.69%2018.894a8%208%200%200%201-1.798-.521a8%208%200%200%201-1.193-.624a1%201%200%201%200-1.072%201.689A10.1%2010.1%200%200%200%209.5%2020.889q.01-1.021.191-1.995m.329-16.899a1%201%200%200%201-.758%201.194a8%208%200%200%200-2.484%201.012a1%201%200%201%201-1.053-1.7a10%2010%200%200%201%203.101-1.264a1%201%200%200%201%201.194.758M3.939%205.322a1%201%200%200%201%20.309%201.38a8%208%200%200%200-1.041%202.474a1%201%200%201%201-1.947-.458a10%2010%200%200%201%201.3-3.087a1%201%200%200%201%201.38-.309m-1.946%206.654a1%201%200%200%201%201.194.758A8%208%200%200%200%204.2%2015.218a1%201%200%201%201-1.7%201.053a10%2010%200%200%201-1.264-3.101a1%201%200%200%201%20.758-1.194M31%2021c0%205.523-4.477%2010-10%2010s-10-4.477-10-10s4.477-10%2010-10s10%204.477%2010%2010m-4.793-1.793a1%201%200%200%200-1.414-1.414L20%2022.586l-2.293-2.293a1%201%200%200%200-1.414%201.414l3%203a1%201%200%200%200%201.414%200z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/circle-multiple-hint-checkmark-32-filled.svg?color=%231a73e8&size=48