Files
IRTH-Touch/client/src/components/icons/InfoIcon.tsx
T
2024-07-06 15:32:02 +05:00

34 lines
1.4 KiB
TypeScript

const InfoIcon = () => {
return (
<svg
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M17.5832 9.99984C17.5832 10.9957 17.387 11.9818 17.0059 12.9019C16.6248 13.8219 16.0662 14.6579 15.3621 15.3621C14.6579 16.0662 13.8219 16.6248 12.9019 17.0059C11.9818 17.387 10.9957 17.5832 9.99984 17.5832C9.00398 17.5832 8.01787 17.387 7.09782 17.0059C6.17777 16.6248 5.34179 16.0662 4.63761 15.3621C3.93343 14.6579 3.37485 13.8219 2.99375 12.9019C2.61265 11.9818 2.4165 10.9957 2.4165 9.99984C2.4165 9.00398 2.61265 8.01787 2.99375 7.09782C3.37485 6.17777 3.93343 5.34179 4.63761 4.63761C5.34179 3.93343 6.17777 3.37485 7.09782 2.99375C8.01787 2.61265 9.00398 2.4165 9.99984 2.4165C10.9957 2.4165 11.9818 2.61265 12.9019 2.99375C13.8219 3.37485 14.6579 3.93343 15.3621 4.63761C16.0662 5.34179 16.6248 6.17777 17.0059 7.09782C17.387 8.01788 17.5832 9.00398 17.5832 9.99984L17.5832 9.99984Z"
stroke="currentColor"
stroke-width="1.5"
/>
<path
d="M10 14.1665V9.1665"
stroke="currentColor"
stroke-width="1.5"
strokeLinecap="round"
/>
<ellipse
cx="0.833333"
cy="0.833333"
rx="0.833333"
ry="0.833333"
transform="matrix(1 0 0 -1 9.1665 6.6665)"
fill="currentColor"
/>
</svg>
);
};
export default InfoIcon;