import { X } from 'lucide-react' export default function AddKeyModal({ show, t, newKey, setNewKey, loading, onClose, onAdd }) { if (!show) { return null } return (

{t('accountManager.modalAddKeyTitle')}

setNewKey(e.target.value)} autoFocus />

{t('accountManager.generateHint')}

) }