UNPKG

@selfcommunity/react-ui

Version:

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

39 lines (32 loc) 982 B
export interface GroupsSkeletonProps { /** * Overrides or extends the styles applied to the component. * @default null */ className?: string; /** * Overrides or extends the styles applied to the component. * @default null */ GroupSkeletonProps?: any; /** * @default 20 */ groupsNumber?: number; } /** * > API documentation for the Community-JS Groups Skeleton component. Learn about the available props and the CSS API. #### Import ```jsx import {GroupsSkeleton} from '@selfcommunity/react-ui'; ``` #### Component Name The name `SCGroups-skeleton-root` can be used when providing style overrides in the theme. #### CSS |Rule Name|Global class|Description| |---|---|---| |root|.SCGroups-skeleton-root|Styles applied to the root element.| |groups|.SCGroups-skeleton-groups|Styles applied to the group elements.| * */ export default function GroupsSkeleton(inProps: GroupsSkeletonProps): JSX.Element;