| 1 |
import React from 'react' |
| 2 |
import type { SVGProps } from 'react' |
| 3 |
|
| 4 |
export const KebabIcon: React.FC<SVGProps<SVGSVGElement>> = props => |
| 5 |
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> |
| 6 |
<circle cx="9" cy="3.5" r="1.6" fill="currentColor" /> |
| 7 |
<circle cx="9" cy="9" r="1.6" fill="currentColor" /> |
| 8 |
<circle cx="9" cy="14.5" r="1.6" fill="currentColor" /> |
| 9 |
</svg> |
| 10 |
|