import { EyeIcon, EyeSlashIcon } from '@heroicons/react/24/outline'; import { useState } from 'react'; import { useTranslation } from 'react-i18next'; import SimpleInput from './SimpleInput'; type PasswordInputProps = { label?: string; id: string; name: string; placeholder: string; value: string; onChange: (value: string) => void; disabled?: boolean; requiredAlert?: boolean; requiredField?: boolean; }; export const PasswordInput: React.FC = ({ label, id, name, placeholder, value, onChange, disabled = false, requiredAlert = false, requiredField = false, }) => { const { t } = useTranslation(); const [type, setType] = useState<'password' | 'text'>('password'); return ( <> {label ? ( ) : null}
); };