Tldraw/packages/tldraw/src/components/icons/DashSolidIcon.tsx

10 wiersze
286 B
TypeScript

import * as React from 'react'
export function DashSolidIcon(): JSX.Element {
return (
<svg width="24" height="24" stroke="currentColor" xmlns="http://www.w3.org/2000/svg">
<circle cx={12} cy={12} r={8} fill="none" strokeWidth={2} strokeLinecap="round" />
</svg>
)
}