'use client' import { Eye, EyeOff } from 'lucide-react' import { forwardRef, useState } from 'react' import { cn } from '../lib/utils' export interface PasswordInputProps extends Omit, 'type'> {} const PasswordInput = forwardRef(({ className, style, ...props }, ref) => { const [passwordVisible, setPasswordVisible] = useState(false) return (
) }) PasswordInput.displayName = 'PasswordInput' export { PasswordInput }