import { themes } from 'shared/themes/index.mjs' import { useTranslation } from 'next-i18next' import { useTheme } from 'shared/hooks/use-theme.mjs' import { ModalWrapper } from 'shared/components/wrappers/modal.mjs' export const ns = ['themes'] export const ModalThemePicker = () => { const { setTheme } = useTheme() const { t } = useTranslation(ns) return (

{t('themes:chooseYourTheme')}

{Object.keys(themes).map((theme) => (
))}
) }