UNPKG

@selfcommunity/react-ui

Version:

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

48 lines (41 loc) 1.8 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const jsx_runtime_1 = require("react/jsx-runtime"); const styles_1 = require("@mui/material/styles"); const material_1 = require("@mui/material"); const system_1 = require("@mui/system"); const PREFIX = 'SCAvatarGroupSkeleton'; const classes = { root: `${PREFIX}-root` }; const Root = (0, styles_1.styled)(material_1.AvatarGroup, { name: PREFIX, slot: 'Root', overridesResolver: (_props, styles) => styles.root })(() => ({})); /** * > API documentation for the Community-JS Avatar Group Skeleton component. Learn about the available props and the CSS API. #### Import ```jsx import {AvatarGroupSkeleton} from '@selfcommunity/react-ui'; ``` #### Component Name The name `SCAvatarGroupSkeleton` can be used when providing style overrides in the theme. #### CSS |Rule Name|Global class|Description| |---|---|---| |root|.SCAvatarGroupSkeleton-root|Styles applied to the root element.| * */ function AvatarGroupSkeleton(inProps) { // PROPS const props = (0, system_1.useThemeProps)({ props: inProps, name: PREFIX }); const { skeletonsAnimation = 'wave', count = 3 } = props, rest = tslib_1.__rest(props, ["skeletonsAnimation", "count"]); const theme = (0, material_1.useTheme)(); return ((0, jsx_runtime_1.jsx)(Root, Object.assign({ className: classes.root }, rest, { children: [...Array(count)].map((_x, i) => ((0, jsx_runtime_1.jsx)(material_1.Avatar, { children: (0, jsx_runtime_1.jsx)(material_1.Skeleton, { variant: "circular", width: theme.selfcommunity.user.avatar.sizeSmall, height: theme.selfcommunity.user.avatar.sizeSmall, animation: skeletonsAnimation }) }, i))) }))); } exports.default = AvatarGroupSkeleton;