@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
38 lines (31 loc) • 1.25 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const jsx_runtime_1 = require("react/jsx-runtime");
const CategoryTrendingFeedWidget_1 = require("../CategoryTrendingFeedWidget");
const styles_1 = require("@mui/material/styles");
const constants_1 = require("./constants");
const classes = {
root: `${constants_1.PREFIX}-skeleton-root`
};
const Root = (0, styles_1.styled)(CategoryTrendingFeedWidget_1.CategoryTrendingFeedWidgetSkeleton, {
name: constants_1.PREFIX,
slot: 'SkeletonRoot'
})(() => ({}));
/**
* > API documentation for the Community-JS Related Feed Objects Widget Skeleton component. Learn about the available props and the CSS API.
#### Import
```jsx
import {RelatedFeedObjectsWidgetSkeleton} from '@selfcommunity/react-ui';
```
#### Component Name
The name `SCRelatedFeedObjects-skeleton-root` can be used when providing style overrides in the theme.
#### CSS
|Rule Name|Global class|Description|
|---|---|---|
|root|.SCRelatedFeedObjectsWidget-skeleton-root|Styles applied to the root element.|
*
*/
function RelatedFeedObjectsWidgetSkeleton() {
return (0, jsx_runtime_1.jsx)(Root, { className: classes.root });
}
exports.default = RelatedFeedObjectsWidgetSkeleton;
;