UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

41 lines (34 loc) 1.84 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const jsx_runtime_1 = require("react/jsx-runtime"); const material_1 = require("@mui/material"); const styles_1 = require("@mui/material/styles"); const Skeleton_1 = tslib_1.__importDefault(require("@mui/material/Skeleton")); const constants_1 = require("./constants"); const classes = { root: `${constants_1.PREFIX}-skeleton-root`, field: `${constants_1.PREFIX}-field` }; const Root = (0, styles_1.styled)(material_1.Box, { name: constants_1.PREFIX, slot: 'SkeletonRoot' })(() => ({})); /** * > API documentation for the Community-JS User Profile Info Skeleton component. Learn about the available props and the CSS API. #### Import ```jsx import {UserProfileInfoSkeleton} from '@selfcommunity/react-ui'; ``` #### Component Name The name `SCUserProfileInfo-skeleton-root` can be used when providing style overrides in the theme. #### CSS |Rule Name|Global class|Description| |---|---|---| |root|.SCUserProfileInfo-skeleton-root|Styles applied to the root element.| * */ function UserProfileInfoSkeleton() { return ((0, jsx_runtime_1.jsx)(Root, Object.assign({ className: classes.root }, { children: Array.from({ length: 3 }).map((v, i) => ((0, jsx_runtime_1.jsxs)(material_1.Box, Object.assign({ className: classes.field }, { children: [(0, jsx_runtime_1.jsx)(material_1.Typography, Object.assign({ variant: "h6" }, { children: (0, jsx_runtime_1.jsx)(Skeleton_1.default, { animation: "wave", sx: { height: 20, width: '50%' } }) })), (0, jsx_runtime_1.jsx)(material_1.Typography, Object.assign({ variant: "body2" }, { children: (0, jsx_runtime_1.jsx)(Skeleton_1.default, { animation: "wave", sx: { height: 20, width: '80%' } }) }))] }), i))) }))); } exports.default = UserProfileInfoSkeleton;