Files
graff-mate-client/src/components/icons/MoreIcon.tsx
T
2025-03-20 14:26:57 +05:00

33 lines
560 B
TypeScript

export default function MoreIcon() {
return (
<svg
width={16}
height={16}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx={1}
cy={1}
transform="matrix(1 0 0 -1 2.333 9)"
fill="currentColor"
r={1}
/>
<circle
cx={1}
cy={1}
r={1}
transform="matrix(1 0 0 -1 7 9)"
fill="currentColor"
/>
<circle
cx={1}
cy={1}
r={1}
transform="matrix(1 0 0 -1 11.667 9)"
fill="currentColor"
/>
</svg> )
}