import React from 'react' interface CheckCircleIconProps extends React.SVGProps { className?: string } export function CheckCircleIcon({ className, color = '#1A1A1A', ...props }: CheckCircleIconProps) { return ( ) }