@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
26 lines (19 loc) • 650 B
TypeScript
/**
* > API documentation for the Community-JS Comments Object Skeleton component. Learn about the available props and the CSS API.
#### Import
```jsx
import {CommentsObjectSkeleton} from '@selfcommunity/react-ui';
```
#### Component Name
The name `SCCommentsObject-skeleton-root` can be used when providing style overrides in the theme.
#### CSS
|Rule Name|Global class|Description|
|---|---|---|
|root|.SCCommentsObject-skeleton-root|Styles applied to the root element.|
*
*/
export default function CommentsObjectSkeleton(props: {
count?: number;
CommentObjectSkeletonProps?: any;
[p: string]: any;
}): JSX.Element;