UNPKG

@drivy/cobalt

Version:

Opinionated design system for Drivy's projects.

11 lines (8 loc) 417 B
import { jsx } from 'react/jsx-runtime'; import { PopoverWrapper } from './PopoverWrapper.js'; import { tooltipConfig } from './tooltipConfig.js'; function TooltipWrapper({ content, children, ...popoverProps }) { return (jsx(PopoverWrapper, { ...tooltipConfig, ...popoverProps, content: content, responsive: false, children: children })); } export { TooltipWrapper }; //# sourceMappingURL=TooltipWrapper.js.map