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