import { Eye, EyeOff } from "lucide-react"; import { useState } from "react"; interface PasswordInputProps { value: string; onChange: (value: string) => void; } const PasswordInput = ({ value, onChange }: PasswordInputProps) => { const [show, setShow] = useState(false); return (
onChange(e.target.value)} className="w-full p-2 border-white/10 border-1 rounded-md" />
); }; export default PasswordInput;