import React from 'react' import PropTypes from 'prop-types' import FaAngleLeft from 'react-icons/lib/fa/angle-left' import Isvg from 'react-inlinesvg' import checkIcon from 'icons/check.svg' import { FormattedMessage } from 'react-intl' import messages from './messages' import styles from './Theme.scss' const Theme = ({ currentTheme, disableSubMenu, setTheme, themes }) => (
) Theme.propTypes = { currentTheme: PropTypes.string.isRequired, disableSubMenu: PropTypes.func.isRequired, setTheme: PropTypes.func, themes: PropTypes.object.isRequired } export default Theme