import { useState } from "react"; import { Input } from "@pram/ui/components/input"; import { Button } from "@pram/ui/components/button"; import { MaterialIcon } from "@/components/ui/MaterialIcon"; type PasswordInputProps = { id: string; name?: string; value: string; onChange: (value: string) => void; onBlur?: () => void; placeholder?: string; autoComplete?: string; }; export function PasswordInput({ id, name, value, onChange, onBlur, placeholder, autoComplete, }: PasswordInputProps) { const [visible, setVisible] = useState(false); return (