@selfcommunity/react-ui
Version: 
React UI Components to integrate a Community created with SelfCommunity Platform.
38 lines (31 loc) • 967 B
TypeScript
import { AvatarGroupProps } from '@mui/material';
export interface AvatarGroupSkeletonProps extends AvatarGroupProps {
    /**
     * Overrides or extends the styles applied to the component.
     * @default null
     */
    className?: string;
    /**
     * Number of visible avatars
     */
    count?: number;
    /**
     * Disable skeleton animation
     */
    skeletonsAnimation?: false | 'wave' | 'pulse';
}
/**
 * > 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.|
 *
 */
export default function AvatarGroupSkeleton(inProps: any): JSX.Element;