UNPKG

@ftrack/react-toolbox

Version:

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

12 lines (9 loc) 358 B
import { themr } from 'react-css-themr'; import { DRAWER } from '../identifiers.js'; import { Overlay } from '../overlay'; import { drawerFactory } from './Drawer.js'; import theme from './theme.scss'; const Drawer = drawerFactory(Overlay); const ThemedDrawer = themr(DRAWER, theme)(Drawer); export default ThemedDrawer; export { ThemedDrawer as Drawer };