react-toolbox/components/tooltip/index.js

7 lines
246 B
JavaScript

import tooltipFactory from './Tooltip';
import theme from './theme.css';
const themedTooltipFactory = options => tooltipFactory({ ...options, theme });
export default tooltipFactory({ theme });
export { themedTooltipFactory as tooltipFactory };