interface SendIconProps { className?: string; fill?: string; } export function SendIcon({ className = "w-6 h-6", fill = "#1A1A1A" }: SendIconProps) { return ( ); }