UNPKG

@spaced-out/ui-design-system

Version:
15 lines (14 loc) 319 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ConditionalWrapper = void 0; const ConditionalWrapper = _ref => { let { condition, wrapper, children } = _ref; return condition ? wrapper?.(children) : children; }; exports.ConditionalWrapper = ConditionalWrapper;