import React from 'react' interface ShapeCircleDashIconProps { className?: string size?: number color?: string full?: boolean } /** @deprecated Use icons from icons-v2-generated instead. */ export function ShapeCircleDashIcon({ className = '', size = 24, color = 'white', full = false }: ShapeCircleDashIconProps) { return ( ) }