import * as React from 'react'; import { Eye, EyeOff } from 'lucide-react'; import { cn } from '../lib/utils'; import { Button } from './button'; export type InputProps = React.InputHTMLAttributes; const Input = React.forwardRef( ({ className, type, ...props }, ref) => { return ( ); }, ); Input.displayName = 'Input'; const PasswordInput = React.forwardRef( ({ className, ...props }, ref) => { const [showPassword, setShowPassword] = React.useState(false); return (
); }, ); PasswordInput.displayName = 'Input'; export { Input, PasswordInput };