react-toolbox/components/tooltip/index.js

7 lines
252 B
JavaScript
Raw Normal View History

2016-08-07 19:55:31 +03:00
import tooltipFactory from './Tooltip.js';
2016-05-30 08:07:50 +03:00
import theme from './theme.scss';
2016-08-07 19:55:31 +03:00
const themedTooltipFactory = (options) => tooltipFactory({ ...options, theme });
export default tooltipFactory({ theme });
export { themedTooltipFactory as tooltipFactory };