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`
}
{Object.keys(themes).map(theme => (
-
))}
)
}
export default ThemePicker