import type { SVGProps } from 'react' /** * CircleCheck icon component - circular checkmark used for success intent. * @param props - SVG properties including className, fill, etc. */ export function CircleCheck(props: SVGProps) { return ( ) }