parent
581f4a76a4
commit
40357f7956
3 changed files with 27 additions and 6 deletions
@ -0,0 +1,21 @@ |
||||
type MoreVerticalIconProps = { |
||||
className?: string; |
||||
}; |
||||
|
||||
export function MoreVerticalIcon(props: MoreVerticalIconProps) { |
||||
const { className } = props; |
||||
|
||||
return ( |
||||
<svg |
||||
clipRule="evenodd" |
||||
fillRule="evenodd" |
||||
strokeLinejoin="round" |
||||
strokeMiterlimit="2" |
||||
viewBox="0 0 24 24" |
||||
xmlns="http://www.w3.org/2000/svg" |
||||
className={className} |
||||
> |
||||
<path d="m12 16.495c1.242 0 2.25 1.008 2.25 2.25s-1.008 2.25-2.25 2.25-2.25-1.008-2.25-2.25 1.008-2.25 2.25-2.25zm0-6.75c1.242 0 2.25 1.008 2.25 2.25s-1.008 2.25-2.25 2.25-2.25-1.008-2.25-2.25 1.008-2.25 2.25-2.25zm0-6.75c1.242 0 2.25 1.008 2.25 2.25s-1.008 2.25-2.25 2.25-2.25-1.008-2.25-2.25 1.008-2.25 2.25-2.25z" /> |
||||
</svg> |
||||
); |
||||
} |
Loading…
Reference in new issue