import { useState } from "react"; import { Eye, EyeOff } from "lucide-react"; import { Input } from "@/components/ui/input"; import { cn } from "@/lib/utils"; export function PasswordInput({ className, ...props }: Omit, "type">) { const [visible, setVisible] = useState(false); return (
); }