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