@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
21 lines • 1.69 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Skeleton = void 0;
const tslib_1 = require("tslib");
const jsx_runtime_1 = require("react/jsx-runtime");
const skeleton_1 = tslib_1.__importDefault(require("@patternfly/react-styles/css/components/Skeleton/skeleton"));
const react_styles_1 = require("@patternfly/react-styles");
const c_skeleton_Height_1 = tslib_1.__importDefault(require('@patternfly/react-tokens/dist/js/c_skeleton_Height'));
const c_skeleton_Width_1 = tslib_1.__importDefault(require('@patternfly/react-tokens/dist/js/c_skeleton_Width'));
const Skeleton = (_a) => {
var { className, width, height, fontSize, shape, screenreaderText } = _a, props = tslib_1.__rest(_a, ["className", "width", "height", "fontSize", "shape", "screenreaderText"]);
const fontHeightClassName = fontSize
? Object.values(skeleton_1.default.modifiers).find((key) => key === `pf-m-text-${fontSize}`)
: undefined;
return ((0, jsx_runtime_1.jsx)("div", Object.assign({}, props, { className: (0, react_styles_1.css)(skeleton_1.default.skeleton, fontSize && fontHeightClassName, shape === 'circle' && skeleton_1.default.modifiers.circle, shape === 'square' && skeleton_1.default.modifiers.square, className) }, ((width || height) && {
style: Object.assign({ [c_skeleton_Width_1.default.name]: width ? width : undefined, [c_skeleton_Height_1.default.name]: height ? height : undefined }, props.style)
}), { children: (0, jsx_runtime_1.jsx)("span", { className: "pf-v6-screen-reader", children: screenreaderText }) })));
};
exports.Skeleton = Skeleton;
exports.Skeleton.displayName = 'Skeleton';
//# sourceMappingURL=Skeleton.js.map
;