@atlaskit/dynamic-table
Version:
A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.
22 lines (21 loc) • 1.57 kB
JavaScript
/* empty-view-container.tsx generated by @compiled/babel-plugin v3.0.2 */
/* eslint-disable @repo/internal/react/require-jsdoc */
;
var _typeof = require("@babel/runtime/helpers/typeof");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.EmptyViewContainer = void 0;
require("./empty-view-container.compiled.css");
var React = _interopRequireWildcard(require("react"));
var _runtime = require("@compiled/react/runtime");
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
var emptyViewContainerStyles = null;
var EmptyViewContainer = exports.EmptyViewContainer = function EmptyViewContainer(props) {
var children = props.children,
testId = props.testId;
return /*#__PURE__*/React.createElement("div", {
"data-testid": testId && "".concat(testId, "--empty-view-container"),
className: (0, _runtime.ax)(["_19pk1wug _2hwx1wug _otyr1wug _18u01wug _ca0q19bv _u5f319bv _n3td19bv _19bv19bv _1bsb1ssb _y3gn1h6o"])
}, children);
};