interface IconProps { className?: string; } export function MoonIcon({ className = 'w-4 h-4' }: IconProps) { return ( ); }