@netdata/charts
Version:
Netdata frontend SDK and chart utilities
25 lines • 754 B
JavaScript
import React from "react";
import { Flex } from "@netdata/netdata-ui";
import FiltersContainer from "./filtersContainer";
import Label from "./label";
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
var Skeleton = function Skeleton() {
return /*#__PURE__*/_jsx(FiltersContainer, {
children: /*#__PURE__*/_jsxs(Flex, {
gap: 1,
children: [/*#__PURE__*/_jsx(Label, {
width: "90px",
background: "borderSecondary",
secondaryLabel: "",
label: ""
}), /*#__PURE__*/_jsx(Label, {
width: "120px",
background: "borderSecondary"
}), /*#__PURE__*/_jsx(Label, {
width: "100px",
background: "borderSecondary"
})]
})
});
};
export default Skeleton;