UserDashboard/components/icon/icon-info-hexagon.tsx
2025-02-21 19:54:48 +08:00

23 lines
1.2 KiB
TypeScript

import { FC } from 'react';
interface IconInfoHexagonProps {
className?: string;
}
const IconInfoHexagon: FC<IconInfoHexagonProps> = ({ className }) => {
return (
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" className={className}>
<path d="M12 7V13" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" />
<circle cx="12" cy="16" r="1" fill="currentColor" />
<path
opacity="0.5"
d="M7.84308 3.80211C9.8718 2.6007 10.8862 2 12 2C13.1138 2 14.1282 2.6007 16.1569 3.80211L16.8431 4.20846C18.8718 5.40987 19.8862 6.01057 20.4431 7C21 7.98943 21 9.19084 21 11.5937V12.4063C21 14.8092 21 16.0106 20.4431 17C19.8862 17.9894 18.8718 18.5901 16.8431 19.7915L16.1569 20.1979C14.1282 21.3993 13.1138 22 12 22C10.8862 22 9.8718 21.3993 7.84308 20.1979L7.15692 19.7915C5.1282 18.5901 4.11384 17.9894 3.55692 17C3 16.0106 3 14.8092 3 12.4063V11.5937C3 9.19084 3 7.98943 3.55692 7C4.11384 6.01057 5.1282 5.40987 7.15692 4.20846L7.84308 3.80211Z"
stroke="currentColor"
strokeWidth="1.5"
/>
</svg>
);
};
export default IconInfoHexagon;