import { useState } from 'react' import { Eye, EyeOff } from 'lucide-react' import { cn } from '@/lib/utils' interface PasswordInputProps extends Omit, 'type'> { className?: string } export function PasswordInput({ className, ...props }: PasswordInputProps) { const [visible, setVisible] = useState(false) return (
) } export default PasswordInput