16 lines
511 B
TypeScript
16 lines
511 B
TypeScript
function QuestionMarkIcon() {
|
|
return (
|
|
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M8.35 6.515c.911-.797 2.389-.797 3.3 0s.911 2.09 0 2.887c-.158.14-.335.253-.521.344-.58.28-1.128.777-1.128 1.42v.584M17 10a7.001 7.001 0 0 1-11.95 4.95A7 7 0 1 1 17 10m-7 4.083h.006v.007H10z"
|
|
stroke="currentColor"
|
|
strokeWidth={1.2}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default QuestionMarkIcon;
|