"use client"; import * as React from "react"; import { Eye, EyeOff } from "lucide-react"; import { Input } from "@/components/ui/input"; import { cn } from "@/lib/utils"; interface PasswordInputProps extends React.InputHTMLAttributes {} export const PasswordInput = React.forwardRef< HTMLInputElement, PasswordInputProps >(({ className, ...props }, ref) => { const [showPassword, setShowPassword] = React.useState(false); return (
); }); PasswordInput.displayName = "PasswordInput";