Files
crm.stream.graff.tech/client/src/components/icons/MoreIcon.tsx
T
2024-10-30 20:57:32 +05:00

23 lines
490 B
TypeScript

interface Props {
className?: string;
}
function MoreIcon({ className = "" }: Props) {
return (
<svg
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<circle cx={5} cy={12} r={1.5} fill="currentColor" />
<circle cx={12} cy={12} r={1.5} fill="currentColor" />
<circle cx={19} cy={12} r={1.5} fill="currentColor" />
</svg>
);
}
export default MoreIcon;