UNPKG

@wordpress/components

Version:
27 lines (21 loc) 572 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.withNextComponent = withNextComponent; var _context = require("../ui/context"); var _tooltip = require("../ui/tooltip"); /** * Internal dependencies */ const Tooltip = process.env.COMPONENT_SYSTEM_PHASE === 1 ? _tooltip.Tooltip : undefined; const adapter = ({ text, ...props }) => ({ ...props, content: text }); function withNextComponent(Component) { return (0, _context.withNext)(Component, Tooltip, 'WPComponentsTooltip', adapter); } //# sourceMappingURL=next.js.map