interface IconProps { className?: string; } export function EyeIcon({ filled, className = 'w-3.5 h-3.5' }: IconProps & { filled: boolean }) { return ( ); }