import * as React from "react"; import { Eye, EyeOff } from "lucide-react"; import { cn } from "@/lib/utils"; const PasswordInput = React.forwardRef(({ className, ...props }, ref) => { const [showPassword, setShowPassword] = React.useState(false); return (