sccoreui
Version:
ui-sccore
9 lines (8 loc) • 402 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const jsx_runtime_1 = require("react/jsx-runtime");
const skeleton_1 = require("primereact/skeleton");
const FeatureSkeleton = ({ height, width }) => {
return ((0, jsx_runtime_1.jsx)(skeleton_1.Skeleton, { height: height ? height : "30px", width: width ? width : "30px" }));
};
exports.default = FeatureSkeleton;