import { useId } from 'react' export function CircleBackground({ color, ...props }: React.ComponentPropsWithoutRef<'svg'> & { color: string }) { let id = useId() return ( ) }