import themes from 'shared/themes/index.js' import ThemeIcon from 'shared/components/icons/theme.js' const ThemePicker = ({ app, className }) => { return (
{app.i18n ? app.t(`${app.theme}Theme`) : `${app.theme} Theme` }
) } export default ThemePicker