import { useTranslation } from "react-i18next"; import { ModalBackdrop } from "#/components/shared/modals/modal-backdrop"; import { I18nKey } from "#/i18n/declaration"; import { BrandButton } from "../brand-button"; interface ResetSettingsModalProps { onReset: () => void; } export function ResetSettingsModal({ onReset }: ResetSettingsModalProps) { const { t } = useTranslation(); return (

{t(I18nKey.SETTINGS$RESET_CONFIRMATION)}

Reset Cancel
); }