import { themr } from 'react-css-themr'; import { BUTTON } from '../identifiers'; import Button from './Button'; import theme from './theme.scss'; const ThemedButton = themr(BUTTON, theme)(Button); export default ThemedButton;