@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
38 lines (31 loc) • 1.12 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const jsx_runtime_1 = require("react/jsx-runtime");
const Skeleton_1 = require("../Skeleton");
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)(Skeleton_1.GenericSkeleton, {
name: constants_1.PREFIX,
slot: 'SkeletonRoot'
})(() => ({}));
/**
* > API documentation for the Community-JS Group Info Widget Skeleton component. Learn about the available props and the CSS API.
#### Import
```jsx
import {PlatformWidgetSkeleton} from '@selfcommunity/react-ui';
```
#### Component Name
The name `SCPlatformWidget-skeleton-root` can be used when providing style overrides in the theme.
#### CSS
|Rule Name|Global class|Description|
|---|---|---|
|root|.SCPlatformWidget-skeleton-root|Styles applied to the root element.|
*
*/
function PlatformWidgetSkeleton() {
return (0, jsx_runtime_1.jsx)(Root, { className: classes.root });
}
exports.default = PlatformWidgetSkeleton;
;