UNPKG

react-toolbox

Version:

A set of React components implementing Google's Material Design specification with the power of CSS Modules.

9 lines (7 loc) 275 B
import { themr } from 'react-css-themr'; import { OVERLAY } from '../identifiers'; import { Overlay } from './Overlay'; import theme from './theme.css'; const ThemedOverlay = themr(OVERLAY, theme)(Overlay); export default ThemedOverlay; export { ThemedOverlay as Overlay };