mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-07-27 22:45:03 +00:00
24 lines
913 B
XML
24 lines
913 B
XML
const QuestionMarkIcon = ({ fill }: { fill: string }) => {
|
|
return (
|
|
<svg
|
|
fill={fill}
|
|
width="100%"
|
|
height="100%"
|
|
version="1.1"
|
|
viewBox="0 0 27.774 27.774"
|
|
>
|
|
<g>
|
|
<path
|
|
d="M10.398,22.811h4.618v4.964h-4.618V22.811z M21.058,1.594C19.854,0.532,17.612,0,14.33,0c-3.711,0-6.205,0.514-7.482,1.543
|
|
c-1.277,1.027-1.916,3.027-1.916,6L4.911,8.551h4.577l-0.02-1.049c0-1.424,0.303-2.377,0.907-2.854
|
|
c0.604-0.477,1.814-0.717,3.632-0.717c1.936,0,3.184,0.228,3.74,0.676c0.559,0.451,0.837,1.457,0.837,3.017
|
|
c0,1.883-0.745,3.133-2.237,3.752l-1.797,0.766c-1.882,0.781-3.044,1.538-3.489,2.27c-0.442,0.732-0.665,2.242-0.665,4.529h4.68
|
|
v-0.646c0-1.41,0.987-2.533,2.965-3.365c2.03-0.861,3.343-1.746,3.935-2.651c0.592-0.908,0.888-2.498,0.888-4.771
|
|
C22.863,4.625,22.261,2.655,21.058,1.594z"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default QuestionMarkIcon;
|