circle hint dismiss icon
circle-hint-dismiss-20-regular from Fluent UI System Icons by Microsoft Corporation · 20 Regular · MIT Free for personal and commercial use.
- Name
- circle-hint-dismiss-20-regular
- Set
- Fluent UI System Icons
- Style
- 20 Regular
- Viewbox
- 20×20
- License
- MIT
5 other variants in Fluent UI System Icons
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-half-vertical-16-filledcircle-image-16-filledcircle-line-12-filledcircle-multiple-concentric-16-filledcircle-multiple-hint-checkmark-16-filledcircle-multiple-subtract-checkmark-20-filledcircle-off-16-filledcircle-shadow-20-filledcircle-small-20-filledcircle-sparkle-16-filled
Use the circle hint dismiss icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M6.255 3.579a.478.478 0 0 0-.706-.227a8 8 0 0 0-2.2 2.2a.478.478 0 0 0 .228.706a.53.53 0 0 0 .638-.2a7 7 0 0 1 1.84-1.84a.53.53 0 0 0 .2-.639m2.44-.458a.53.53 0 0 1-.593-.31a.478.478 0 0 1 .338-.659a8 8 0 0 1 3.115-.001c.298.059.454.38.338.66a.53.53 0 0 1-.594.31a7 7 0 0 0-2.603 0m7.727 3.135a.53.53 0 0 1-.638-.2a7 7 0 0 0-1.842-1.842a.53.53 0 0 1-.201-.638a.478.478 0 0 1 .706-.228A8 8 0 0 1 16.65 5.55c.17.253.054.59-.227.706m-6.168 11.74a5.5 5.5 0 0 1-.66-1.008a7 7 0 0 1-.898-.11a.53.53 0 0 0-.594.31c-.116.28.04.601.338.66a8 8 0 0 0 1.814.148m6.734-8.402q.543.276 1.008.66Q18 10.127 18 10a8 8 0 0 0-.152-1.558a.478.478 0 0 0-.66-.338a.53.53 0 0 0-.309.593q.083.44.11.897M3.577 13.742a.53.53 0 0 1 .638.2a7 7 0 0 0 1.84 1.841a.53.53 0 0 1 .2.638a.478.478 0 0 1-.706.228a8 8 0 0 1-2.2-2.202a.478.478 0 0 1 .228-.705M2.81 8.106a.53.53 0 0 1 .31.593a7 7 0 0 0 0 2.601a.53.53 0 0 1-.31.594a.478.478 0 0 1-.66-.338a8 8 0 0 1 0-3.112a.478.478 0 0 1 .66-.338M19 14.5a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m-2.646-1.146a.5.5 0 0 0-.708-.708L14.5 13.793l-1.146-1.147a.5.5 0 0 0-.708.707l1.147 1.147l-1.147 1.146a.5.5 0 0 0 .708.707l1.146-1.146l1.146 1.146a.5.5 0 0 0 .708-.707L15.207 14.5z"/></svg>
React
import type { SVGProps } from "react";
export function FluentCircleHintDismiss20Regular(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M6.255 3.579a.478.478 0 0 0-.706-.227a8 8 0 0 0-2.2 2.2a.478.478 0 0 0 .228.706a.53.53 0 0 0 .638-.2a7 7 0 0 1 1.84-1.84a.53.53 0 0 0 .2-.639m2.44-.458a.53.53 0 0 1-.593-.31a.478.478 0 0 1 .338-.659a8 8 0 0 1 3.115-.001c.298.059.454.38.338.66a.53.53 0 0 1-.594.31a7 7 0 0 0-2.603 0m7.727 3.135a.53.53 0 0 1-.638-.2a7 7 0 0 0-1.842-1.842a.53.53 0 0 1-.201-.638a.478.478 0 0 1 .706-.228A8 8 0 0 1 16.65 5.55c.17.253.054.59-.227.706m-6.168 11.74a5.5 5.5 0 0 1-.66-1.008a7 7 0 0 1-.898-.11a.53.53 0 0 0-.594.31c-.116.28.04.601.338.66a8 8 0 0 0 1.814.148m6.734-8.402q.543.276 1.008.66Q18 10.127 18 10a8 8 0 0 0-.152-1.558a.478.478 0 0 0-.66-.338a.53.53 0 0 0-.309.593q.083.44.11.897M3.577 13.742a.53.53 0 0 1 .638.2a7 7 0 0 0 1.84 1.841a.53.53 0 0 1 .2.638a.478.478 0 0 1-.706.228a8 8 0 0 1-2.2-2.202a.478.478 0 0 1 .228-.705M2.81 8.106a.53.53 0 0 1 .31.593a7 7 0 0 0 0 2.601a.53.53 0 0 1-.31.594a.478.478 0 0 1-.66-.338a8 8 0 0 1 0-3.112a.478.478 0 0 1 .66-.338M19 14.5a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m-2.646-1.146a.5.5 0 0 0-.708-.708L14.5 13.793l-1.146-1.147a.5.5 0 0 0-.708.707l1.147 1.147l-1.147 1.146a.5.5 0 0 0 .708.707l1.146-1.146l1.146 1.146a.5.5 0 0 0 .708-.707L15.207 14.5z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M6.255 3.579a.478.478 0 0 0-.706-.227a8 8 0 0 0-2.2 2.2a.478.478 0 0 0 .228.706a.53.53 0 0 0 .638-.2a7 7 0 0 1 1.84-1.84a.53.53 0 0 0 .2-.639m2.44-.458a.53.53 0 0 1-.593-.31a.478.478 0 0 1 .338-.659a8 8 0 0 1 3.115-.001c.298.059.454.38.338.66a.53.53 0 0 1-.594.31a7 7 0 0 0-2.603 0m7.727 3.135a.53.53 0 0 1-.638-.2a7 7 0 0 0-1.842-1.842a.53.53 0 0 1-.201-.638a.478.478 0 0 1 .706-.228A8 8 0 0 1 16.65 5.55c.17.253.054.59-.227.706m-6.168 11.74a5.5 5.5 0 0 1-.66-1.008a7 7 0 0 1-.898-.11a.53.53 0 0 0-.594.31c-.116.28.04.601.338.66a8 8 0 0 0 1.814.148m6.734-8.402q.543.276 1.008.66Q18 10.127 18 10a8 8 0 0 0-.152-1.558a.478.478 0 0 0-.66-.338a.53.53 0 0 0-.309.593q.083.44.11.897M3.577 13.742a.53.53 0 0 1 .638.2a7 7 0 0 0 1.84 1.841a.53.53 0 0 1 .2.638a.478.478 0 0 1-.706.228a8 8 0 0 1-2.2-2.202a.478.478 0 0 1 .228-.705M2.81 8.106a.53.53 0 0 1 .31.593a7 7 0 0 0 0 2.601a.53.53 0 0 1-.31.594a.478.478 0 0 1-.66-.338a8 8 0 0 1 0-3.112a.478.478 0 0 1 .66-.338M19 14.5a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m-2.646-1.146a.5.5 0 0 0-.708-.708L14.5 13.793l-1.146-1.147a.5.5 0 0 0-.708.707l1.147 1.147l-1.147 1.146a.5.5 0 0 0 .708.707l1.146-1.146l1.146 1.146a.5.5 0 0 0 .708-.707L15.207 14.5z"/></svg> </template>
CSS
.icon-circle-hint-dismiss-20-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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M6.255%203.579a.478.478%200%200%200-.706-.227a8%208%200%200%200-2.2%202.2a.478.478%200%200%200%20.228.706a.53.53%200%200%200%20.638-.2a7%207%200%200%201%201.84-1.84a.53.53%200%200%200%20.2-.639m2.44-.458a.53.53%200%200%201-.593-.31a.478.478%200%200%201%20.338-.659a8%208%200%200%201%203.115-.001c.298.059.454.38.338.66a.53.53%200%200%201-.594.31a7%207%200%200%200-2.603%200m7.727%203.135a.53.53%200%200%201-.638-.2a7%207%200%200%200-1.842-1.842a.53.53%200%200%201-.201-.638a.478.478%200%200%201%20.706-.228A8%208%200%200%201%2016.65%205.55c.17.253.054.59-.227.706m-6.168%2011.74a5.5%205.5%200%200%201-.66-1.008a7%207%200%200%201-.898-.11a.53.53%200%200%200-.594.31c-.116.28.04.601.338.66a8%208%200%200%200%201.814.148m6.734-8.402q.543.276%201.008.66Q18%2010.127%2018%2010a8%208%200%200%200-.152-1.558a.478.478%200%200%200-.66-.338a.53.53%200%200%200-.309.593q.083.44.11.897M3.577%2013.742a.53.53%200%200%201%20.638.2a7%207%200%200%200%201.84%201.841a.53.53%200%200%201%20.2.638a.478.478%200%200%201-.706.228a8%208%200%200%201-2.2-2.202a.478.478%200%200%201%20.228-.705M2.81%208.106a.53.53%200%200%201%20.31.593a7%207%200%200%200%200%202.601a.53.53%200%200%201-.31.594a.478.478%200%200%201-.66-.338a8%208%200%200%201%200-3.112a.478.478%200%200%201%20.66-.338M19%2014.5a4.5%204.5%200%201%201-9%200a4.5%204.5%200%200%201%209%200m-2.646-1.146a.5.5%200%200%200-.708-.708L14.5%2013.793l-1.146-1.147a.5.5%200%200%200-.708.707l1.147%201.147l-1.147%201.146a.5.5%200%200%200%20.708.707l1.146-1.146l1.146%201.146a.5.5%200%200%200%20.708-.707L15.207%2014.5z%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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M6.255%203.579a.478.478%200%200%200-.706-.227a8%208%200%200%200-2.2%202.2a.478.478%200%200%200%20.228.706a.53.53%200%200%200%20.638-.2a7%207%200%200%201%201.84-1.84a.53.53%200%200%200%20.2-.639m2.44-.458a.53.53%200%200%201-.593-.31a.478.478%200%200%201%20.338-.659a8%208%200%200%201%203.115-.001c.298.059.454.38.338.66a.53.53%200%200%201-.594.31a7%207%200%200%200-2.603%200m7.727%203.135a.53.53%200%200%201-.638-.2a7%207%200%200%200-1.842-1.842a.53.53%200%200%201-.201-.638a.478.478%200%200%201%20.706-.228A8%208%200%200%201%2016.65%205.55c.17.253.054.59-.227.706m-6.168%2011.74a5.5%205.5%200%200%201-.66-1.008a7%207%200%200%201-.898-.11a.53.53%200%200%200-.594.31c-.116.28.04.601.338.66a8%208%200%200%200%201.814.148m6.734-8.402q.543.276%201.008.66Q18%2010.127%2018%2010a8%208%200%200%200-.152-1.558a.478.478%200%200%200-.66-.338a.53.53%200%200%200-.309.593q.083.44.11.897M3.577%2013.742a.53.53%200%200%201%20.638.2a7%207%200%200%200%201.84%201.841a.53.53%200%200%201%20.2.638a.478.478%200%200%201-.706.228a8%208%200%200%201-2.2-2.202a.478.478%200%200%201%20.228-.705M2.81%208.106a.53.53%200%200%201%20.31.593a7%207%200%200%200%200%202.601a.53.53%200%200%201-.31.594a.478.478%200%200%201-.66-.338a8%208%200%200%201%200-3.112a.478.478%200%200%201%20.66-.338M19%2014.5a4.5%204.5%200%201%201-9%200a4.5%204.5%200%200%201%209%200m-2.646-1.146a.5.5%200%200%200-.708-.708L14.5%2013.793l-1.146-1.147a.5.5%200%200%200-.708.707l1.147%201.147l-1.147%201.146a.5.5%200%200%200%20.708.707l1.146-1.146l1.146%201.146a.5.5%200%200%200%20.708-.707L15.207%2014.5z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/circle-hint-dismiss-20-regular.svg?color=%231a73e8&size=48