interface CurveProps extends React.SVGAttributes { fill?: string; } export default function Curve({ fill = "var(--border-faint)", ...props }: CurveProps) { return ( ); }