import * as React from 'react' import { Eye, EyeOff } from 'lucide-react' import { cn } from '@/lib/utils' import { Button } from './ui/button' import { Input } from './ui/input' type PasswordInputProps = Omit< React.InputHTMLAttributes, 'type' > & { ref?: React.Ref } export function PasswordInput({ className, disabled, ref, ...props }: PasswordInputProps) { const [showPassword, setShowPassword] = React.useState(false) return (
) }