@elastic/eui
Version:
Elastic UI Component Library
30 lines (28 loc) • 1.14 kB
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.EuiAutoSizer = void 0;
var _react = _interopRequireDefault(require("react"));
var _react2 = require("@emotion/react");
/*
* 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 EuiAutoSizer = function EuiAutoSizer(_ref) {
var children = _ref.children,
defaultHeight = _ref.defaultHeight,
defaultWidth = _ref.defaultWidth;
var childrenParams = {
height: defaultHeight !== null && defaultHeight !== void 0 ? defaultHeight : 600,
width: defaultWidth !== null && defaultWidth !== void 0 ? defaultWidth : 600
};
return (0, _react2.jsx)("div", {
"data-eui": "EuiAutoSizer"
}, children(childrenParams));
};
exports.EuiAutoSizer = EuiAutoSizer;