UNPKG

@drivy/cobalt

Version:

Opinionated design system for Drivy's projects.

15 lines (14 loc) 471 B
import { jsx } from "react/jsx-runtime"; import { PopoverWrapper } from "./PopoverWrapper.js"; import { tooltipConfig } from "./tooltipConfig.js"; function TooltipWrapper({ content, children, ...popoverProps }) { return /*#__PURE__*/ jsx(PopoverWrapper, { ...tooltipConfig, ...popoverProps, content: content, responsive: false, children: children }); } export { TooltipWrapper }; //# sourceMappingURL=TooltipWrapper.js.map