"use client"; import * as React from "react"; import { Eye, EyeOff } from "lucide-react"; import { cn } from "@/lib/utils"; import { Input } from "@/components/ui/input"; import { Button } from "@/components/ui/button"; const PasswordInput = React.forwardRef< HTMLInputElement, Omit, "type"> >(({ className, ...props }, ref) => { const [visible, setVisible] = React.useState(false); return (
); }); PasswordInput.displayName = "PasswordInput"; export { PasswordInput };