@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
17 lines (13 loc) • 511 B
JavaScript
'use client';
;
var React = require('react');
var Portal = require('./Portal.cjs');
function OptionalPortal({ withinPortal = true, children, ...others }) {
if (withinPortal) {
return /* @__PURE__ */ React.createElement(Portal.Portal, { ...others }, children);
}
return /* @__PURE__ */ React.createElement(React.Fragment, null, children);
}
OptionalPortal.displayName = "@mantine/core/OptionalPortal";
exports.OptionalPortal = OptionalPortal;
//# sourceMappingURL=OptionalPortal.cjs.map