UNPKG

@selfcommunity/react-ui

Version:

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

34 lines (27 loc) 851 B
import { BoxProps } from '@mui/material'; export interface ContributorsSkeleton extends BoxProps { /** * AvatarGroupSkeleton props * @default {count: 3} */ AvatarGroupSkeletonProps?: any; /** * Other props */ [p: string]: any; } /** * > API documentation for the Community-JS Contributors Skeleton component. Learn about the available props and the CSS API. #### Import ```jsx import {ContributorsSkeleton} from '@selfcommunity/react-ui'; ``` #### Component Name The name `SCFeedObject-contributors-skeleton-root` can be used when providing style overrides in the theme. #### CSS |Rule Name|Global class|Description| |---|---|---| |root|.SCFeedObject-contributors-skeleton-root|Styles applied to the root element.| * */ export default function ContributorsSkeleton(props: any): JSX.Element;