UNPKG

react-toolbox

Version:

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

11 lines (8 loc) 343 B
import { themr } from 'react-css-themr'; import { SNACKBAR } from '../identifiers'; import { snackbarFactory } from './Snackbar'; import { Button } from '../button'; import theme from './theme.css'; const ThemedSnackbar = themr(SNACKBAR, theme)(snackbarFactory(Button)); export default ThemedSnackbar; export { ThemedSnackbar as Snackbar };