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 (