import type { SVGProps } from 'react' export function DrawPolygonIcon(props: SVGProps) { return ( ) } export function DrawSquareIcon(props: SVGProps) { return ( ) } export function DrawCircleIcon(props: SVGProps) { return ( ) } export function DrawLassoIcon(props: SVGProps) { return ( ) } export function SelectToolIcon(props: SVGProps) { return ( ) } /** Spatial-mask glyph (circle with horizontal "globe" stripes) for the lasso * geometry toolbar's mask/draw toggle. From Figma node 5960:14347. */ export function SpatialMaskIcon(props: SVGProps) { return ( ) } /** "Aa" glyph for the lasso geometry toolbar's rename action. From Figma node * 5960:14347. */ export function TextAaIcon(props: SVGProps) { return ( ) }