import themes from 'shared/themes/index.js' import ThemeIcon from 'shared/components/icons/theme.js' import { useTranslation } from 'next-i18next' const ThemePicker = ({ app, className }) => { const { t } = useTranslation(['themes']) return (
{t(`${app.theme}Theme`)}
) } export default ThemePicker