23 lines
490 B
TypeScript
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;
|