UNPKG

@elastic/eui

Version:

Elastic UI Component Library

24 lines (22 loc) 958 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EuiCacheProvider = void 0; var _react = _interopRequireDefault(require("react")); var _react2 = require("@emotion/react"); function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; } /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0 and the Server Side Public License, v 1; you may not use this file except * in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ var EuiCacheProvider = exports.EuiCacheProvider = function EuiCacheProvider(_ref) { var cache = _ref.cache, children = _ref.children; return children && cache ? (0, _react2.jsx)(_react2.CacheProvider, { value: cache }, children) : (0, _react2.jsx)(_react.default.Fragment, null, children); };