import { Switch } from "@nextui-org/react"; import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; import { cn } from "#/utils/utils"; interface ConfirmationModeSwitchProps { isDisabled: boolean; defaultSelected: boolean; } export function ConfirmationModeSwitch({ isDisabled, defaultSelected, }: ConfirmationModeSwitchProps) { const { t } = useTranslation(); return ( {t(I18nKey.SETTINGS_FORM$ENABLE_CONFIRMATION_MODE_LABEL)} ); }