circle-hint-28-filled from Fluent UI System Icons by Microsoft Corporation · 28 Filled · MIT Free for personal and commercial use.

Name
circle-hint-28-filled
Set
Fluent UI System Icons
Style
28 Filled
Viewbox
28×28
License
MIT

13 other variants in Fluent UI System Icons

Related icons in Fluent UI System Icons

Use the circle hint icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 28 28"><path fill="currentColor" d="M8.705 4.486c-.23-.554-.891-.79-1.39-.456a12.1 12.1 0 0 0-3.284 3.283c-.335.498-.1 1.16.455 1.39c.47.195 1.008.006 1.298-.411a10 10 0 0 1 2.509-2.507c.418-.291.607-.828.412-1.299m3.52-.33c-.502.09-1.015-.156-1.21-.627c-.23-.554.071-1.19.66-1.305a12.1 12.1 0 0 1 4.65.002c.59.116.89.75.66 1.305c-.195.47-.709.717-1.21.627a10 10 0 0 0-3.55-.002m11.283 4.55c-.47.195-1.007.006-1.298-.411a10 10 0 0 0-2.505-2.506c-.417-.291-.606-.828-.411-1.298c.23-.555.892-.791 1.39-.456c1.294.87 2.41 1.987 3.28 3.281c.335.499.099 1.16-.456 1.39m.96 8.273c-.471-.194-.718-.708-.628-1.209a10 10 0 0 0 0-3.544c-.09-.502.156-1.016.626-1.21c.555-.23 1.19.07 1.305.66a12.1 12.1 0 0 1 .001 4.643c-.115.589-.75.89-1.305.66m-5.177 6.532c-.194-.47-.006-1.008.412-1.298a10 10 0 0 0 2.51-2.511c.29-.418.828-.608 1.298-.413c.554.23.79.892.456 1.39a12.1 12.1 0 0 1-3.285 3.288c-.499.335-1.16.099-1.39-.456m-8.273.96c.194-.47.708-.716 1.209-.627a10.1 10.1 0 0 0 3.546-.001c.5-.09 1.015.156 1.21.627c.23.554-.072 1.189-.66 1.305a12.1 12.1 0 0 1-4.645.001c-.589-.115-.89-.75-.66-1.305m-6.535-5.178c.47-.195 1.008-.006 1.299.412c.681.979 1.533 1.83 2.513 2.512c.418.29.607.828.412 1.298c-.23.555-.891.79-1.39.456a12.1 12.1 0 0 1-3.29-3.288c-.334-.498-.098-1.16.456-1.39m-.956-8.281c.47.194.717.708.627 1.21a10 10 0 0 0-.001 3.552c.09.5-.157 1.015-.627 1.21c-.555.23-1.19-.072-1.305-.66a12.1 12.1 0 0 1 0-4.653c.117-.588.751-.889 1.306-.66"/></svg>

React

import type { SVGProps } from "react";

export function FluentCircleHint28Filled(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="M8.705 4.486c-.23-.554-.891-.79-1.39-.456a12.1 12.1 0 0 0-3.284 3.283c-.335.498-.1 1.16.455 1.39c.47.195 1.008.006 1.298-.411a10 10 0 0 1 2.509-2.507c.418-.291.607-.828.412-1.299m3.52-.33c-.502.09-1.015-.156-1.21-.627c-.23-.554.071-1.19.66-1.305a12.1 12.1 0 0 1 4.65.002c.59.116.89.75.66 1.305c-.195.47-.709.717-1.21.627a10 10 0 0 0-3.55-.002m11.283 4.55c-.47.195-1.007.006-1.298-.411a10 10 0 0 0-2.505-2.506c-.417-.291-.606-.828-.411-1.298c.23-.555.892-.791 1.39-.456c1.294.87 2.41 1.987 3.28 3.281c.335.499.099 1.16-.456 1.39m.96 8.273c-.471-.194-.718-.708-.628-1.209a10 10 0 0 0 0-3.544c-.09-.502.156-1.016.626-1.21c.555-.23 1.19.07 1.305.66a12.1 12.1 0 0 1 .001 4.643c-.115.589-.75.89-1.305.66m-5.177 6.532c-.194-.47-.006-1.008.412-1.298a10 10 0 0 0 2.51-2.511c.29-.418.828-.608 1.298-.413c.554.23.79.892.456 1.39a12.1 12.1 0 0 1-3.285 3.288c-.499.335-1.16.099-1.39-.456m-8.273.96c.194-.47.708-.716 1.209-.627a10.1 10.1 0 0 0 3.546-.001c.5-.09 1.015.156 1.21.627c.23.554-.072 1.189-.66 1.305a12.1 12.1 0 0 1-4.645.001c-.589-.115-.89-.75-.66-1.305m-6.535-5.178c.47-.195 1.008-.006 1.299.412c.681.979 1.533 1.83 2.513 2.512c.418.29.607.828.412 1.298c-.23.555-.891.79-1.39.456a12.1 12.1 0 0 1-3.29-3.288c-.334-.498-.098-1.16.456-1.39m-.956-8.281c.47.194.717.708.627 1.21a10 10 0 0 0-.001 3.552c.09.5-.157 1.015-.627 1.21c-.555.23-1.19-.072-1.305-.66a12.1 12.1 0 0 1 0-4.653c.117-.588.751-.889 1.306-.66"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 28 28"><path fill="currentColor" d="M8.705 4.486c-.23-.554-.891-.79-1.39-.456a12.1 12.1 0 0 0-3.284 3.283c-.335.498-.1 1.16.455 1.39c.47.195 1.008.006 1.298-.411a10 10 0 0 1 2.509-2.507c.418-.291.607-.828.412-1.299m3.52-.33c-.502.09-1.015-.156-1.21-.627c-.23-.554.071-1.19.66-1.305a12.1 12.1 0 0 1 4.65.002c.59.116.89.75.66 1.305c-.195.47-.709.717-1.21.627a10 10 0 0 0-3.55-.002m11.283 4.55c-.47.195-1.007.006-1.298-.411a10 10 0 0 0-2.505-2.506c-.417-.291-.606-.828-.411-1.298c.23-.555.892-.791 1.39-.456c1.294.87 2.41 1.987 3.28 3.281c.335.499.099 1.16-.456 1.39m.96 8.273c-.471-.194-.718-.708-.628-1.209a10 10 0 0 0 0-3.544c-.09-.502.156-1.016.626-1.21c.555-.23 1.19.07 1.305.66a12.1 12.1 0 0 1 .001 4.643c-.115.589-.75.89-1.305.66m-5.177 6.532c-.194-.47-.006-1.008.412-1.298a10 10 0 0 0 2.51-2.511c.29-.418.828-.608 1.298-.413c.554.23.79.892.456 1.39a12.1 12.1 0 0 1-3.285 3.288c-.499.335-1.16.099-1.39-.456m-8.273.96c.194-.47.708-.716 1.209-.627a10.1 10.1 0 0 0 3.546-.001c.5-.09 1.015.156 1.21.627c.23.554-.072 1.189-.66 1.305a12.1 12.1 0 0 1-4.645.001c-.589-.115-.89-.75-.66-1.305m-6.535-5.178c.47-.195 1.008-.006 1.299.412c.681.979 1.533 1.83 2.513 2.512c.418.29.607.828.412 1.298c-.23.555-.891.79-1.39.456a12.1 12.1 0 0 1-3.29-3.288c-.334-.498-.098-1.16.456-1.39m-.956-8.281c.47.194.717.708.627 1.21a10 10 0 0 0-.001 3.552c.09.5-.157 1.015-.627 1.21c-.555.23-1.19-.072-1.305-.66a12.1 12.1 0 0 1 0-4.653c.117-.588.751-.889 1.306-.66"/></svg>
</template>

CSS

.icon-circle-hint-28-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%2028%2028%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M8.705%204.486c-.23-.554-.891-.79-1.39-.456a12.1%2012.1%200%200%200-3.284%203.283c-.335.498-.1%201.16.455%201.39c.47.195%201.008.006%201.298-.411a10%2010%200%200%201%202.509-2.507c.418-.291.607-.828.412-1.299m3.52-.33c-.502.09-1.015-.156-1.21-.627c-.23-.554.071-1.19.66-1.305a12.1%2012.1%200%200%201%204.65.002c.59.116.89.75.66%201.305c-.195.47-.709.717-1.21.627a10%2010%200%200%200-3.55-.002m11.283%204.55c-.47.195-1.007.006-1.298-.411a10%2010%200%200%200-2.505-2.506c-.417-.291-.606-.828-.411-1.298c.23-.555.892-.791%201.39-.456c1.294.87%202.41%201.987%203.28%203.281c.335.499.099%201.16-.456%201.39m.96%208.273c-.471-.194-.718-.708-.628-1.209a10%2010%200%200%200%200-3.544c-.09-.502.156-1.016.626-1.21c.555-.23%201.19.07%201.305.66a12.1%2012.1%200%200%201%20.001%204.643c-.115.589-.75.89-1.305.66m-5.177%206.532c-.194-.47-.006-1.008.412-1.298a10%2010%200%200%200%202.51-2.511c.29-.418.828-.608%201.298-.413c.554.23.79.892.456%201.39a12.1%2012.1%200%200%201-3.285%203.288c-.499.335-1.16.099-1.39-.456m-8.273.96c.194-.47.708-.716%201.209-.627a10.1%2010.1%200%200%200%203.546-.001c.5-.09%201.015.156%201.21.627c.23.554-.072%201.189-.66%201.305a12.1%2012.1%200%200%201-4.645.001c-.589-.115-.89-.75-.66-1.305m-6.535-5.178c.47-.195%201.008-.006%201.299.412c.681.979%201.533%201.83%202.513%202.512c.418.29.607.828.412%201.298c-.23.555-.891.79-1.39.456a12.1%2012.1%200%200%201-3.29-3.288c-.334-.498-.098-1.16.456-1.39m-.956-8.281c.47.194.717.708.627%201.21a10%2010%200%200%200-.001%203.552c.09.5-.157%201.015-.627%201.21c-.555.23-1.19-.072-1.305-.66a12.1%2012.1%200%200%201%200-4.653c.117-.588.751-.889%201.306-.66%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%22M8.705%204.486c-.23-.554-.891-.79-1.39-.456a12.1%2012.1%200%200%200-3.284%203.283c-.335.498-.1%201.16.455%201.39c.47.195%201.008.006%201.298-.411a10%2010%200%200%201%202.509-2.507c.418-.291.607-.828.412-1.299m3.52-.33c-.502.09-1.015-.156-1.21-.627c-.23-.554.071-1.19.66-1.305a12.1%2012.1%200%200%201%204.65.002c.59.116.89.75.66%201.305c-.195.47-.709.717-1.21.627a10%2010%200%200%200-3.55-.002m11.283%204.55c-.47.195-1.007.006-1.298-.411a10%2010%200%200%200-2.505-2.506c-.417-.291-.606-.828-.411-1.298c.23-.555.892-.791%201.39-.456c1.294.87%202.41%201.987%203.28%203.281c.335.499.099%201.16-.456%201.39m.96%208.273c-.471-.194-.718-.708-.628-1.209a10%2010%200%200%200%200-3.544c-.09-.502.156-1.016.626-1.21c.555-.23%201.19.07%201.305.66a12.1%2012.1%200%200%201%20.001%204.643c-.115.589-.75.89-1.305.66m-5.177%206.532c-.194-.47-.006-1.008.412-1.298a10%2010%200%200%200%202.51-2.511c.29-.418.828-.608%201.298-.413c.554.23.79.892.456%201.39a12.1%2012.1%200%200%201-3.285%203.288c-.499.335-1.16.099-1.39-.456m-8.273.96c.194-.47.708-.716%201.209-.627a10.1%2010.1%200%200%200%203.546-.001c.5-.09%201.015.156%201.21.627c.23.554-.072%201.189-.66%201.305a12.1%2012.1%200%200%201-4.645.001c-.589-.115-.89-.75-.66-1.305m-6.535-5.178c.47-.195%201.008-.006%201.299.412c.681.979%201.533%201.83%202.513%202.512c.418.29.607.828.412%201.298c-.23.555-.891.79-1.39.456a12.1%2012.1%200%200%201-3.29-3.288c-.334-.498-.098-1.16.456-1.39m-.956-8.281c.47.194.717.708.627%201.21a10%2010%200%200%200-.001%203.552c.09.5-.157%201.015-.627%201.21c-.555.23-1.19-.072-1.305-.66a12.1%2012.1%200%200%201%200-4.653c.117-.588.751-.889%201.306-.66%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/circle-hint-28-filled.svg?color=%231a73e8&size=48