@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
38 lines (31 loc) • 1.27 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const jsx_runtime_1 = require("react/jsx-runtime");
const material_1 = require("@mui/material");
const PREFIX = 'SCUserProfileEditSectionSettingsSkeleton';
const classes = {
root: `${PREFIX}-root`
};
const Root = (0, material_1.styled)(material_1.Box, {
name: PREFIX,
slot: 'Root',
overridesResolver: (props, styles) => styles.root
})(() => ({}));
/**
* > API documentation for the Community-JS Settings Skeleton component. Learn about the available props and the CSS API.
#### Import
```jsx
import {SettingsSkeleton} from '@selfcommunity/react-ui';
```
#### Component Name
The name `SCUserProfileEditSectionSettingsSkeleton` can be used when providing style overrides in the theme.
#### CSS
|Rule Name|Global class|Description|
|---|---|---|
|root|.SCUserProfileEditSectionSettingsSkeleton-root|Styles applied to the root element.|
*
*/
function SettingsSkeleton() {
return ((0, jsx_runtime_1.jsxs)(Root, Object.assign({ className: classes.root }, { children: [(0, jsx_runtime_1.jsx)(material_1.Skeleton, {}), (0, jsx_runtime_1.jsx)(material_1.Skeleton, {}), (0, jsx_runtime_1.jsx)(material_1.Skeleton, {})] })));
}
exports.default = SettingsSkeleton;