@elastic/eui
Version:
Elastic UI Component Library
22 lines (21 loc) • 1.19 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.withEuiPopover = void 0;
var _react = _interopRequireDefault(require("react"));
var _popover = require("./popover");
var _react2 = require("@emotion/react");
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); } /*
* 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 withEuiPopover = exports.withEuiPopover = function withEuiPopover(element, popoverProps) {
return popoverProps ? (0, _react2.jsx)(_popover.EuiPopover, _extends({}, popoverProps, {
button: element
})) : element;
};