react-toolbox/components/overlay/index.js

9 lines
282 B
JavaScript
Raw Normal View History

import { themr } from 'react-css-themr';
import { OVERLAY } from '../identifiers.js';
import { Overlay } from './Overlay.js';
import theme from './theme.scss';
const ThemedOverlay = themr(OVERLAY, theme)(Overlay);
export default ThemedOverlay;
export { ThemedOverlay as Overlay };