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