@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) • 397 B
JavaScript
import { themr } from 'react-css-themr';
import { SNACKBAR } from '../identifiers.js';
import { snackbarFactory } from './Snackbar.js';
import { Overlay } from '../overlay';
import { Button } from '../button';
import theme from './theme.scss';
const ThemedSnackbar = themr(SNACKBAR, theme)(snackbarFactory(Overlay, Button));
export default ThemedSnackbar;
export { ThemedSnackbar as Snackbar };