File size: 303 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
export function EclipseIcon(props: React.SVGProps<SVGSVGElement>) {
return (
<svg
width="14"
height="14"
viewBox="0 0 14 14"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<circle cx="7" cy="7" r="5.5" strokeWidth="3" />
</svg>
)
}
|