import { useState } from "react"; import { Eye, EyeOff } from "lucide-react"; import { Input } from "@/components/ui/input"; interface Props extends React.InputHTMLAttributes {} const InputPassword = ({ ...props }: Props) => { const [showPassword, setShowPassword] = useState(false); return (
); }; export default InputPassword;