@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
34 lines (27 loc) • 1.15 kB
TypeScript
import React from 'react';
interface PrivateMessageComponentSkeletonMap {
/**
* Overrides or extends the styles applied to the component.
* @default null
*/
className?: string;
}
export type PrivateMessageComponentProps = React.PropsWithChildren<PrivateMessageComponentSkeletonMap>;
/**
* > API documentation for the Community-JS Private Messages Skeleton Template. Learn about the available props and the CSS API.
#### Import
```jsx
import {PrivateMessageComponentSkeleton} from '@selfcommunity/react-templates';
```
#### Component Name
The name `SCPrivateMessageComponentSkeleton` can be used when providing style overrides in the theme.
#### CSS
|Rule Name|Global class|Description|
|---|---|---|
|root|.SCPrivateMessageComponent-skeleton-root|Styles applied to the root element.|
|snippetsSection|.SCPrivateMessageComponent-snippets-section|Styles applied to the snippets section|
|threadSection|.SCPrivateMessageComponent-thread-section|Styles applied to the thread section|
*
*/
export default function PrivateMessageComponentSkeleton(props: PrivateMessageComponentProps): JSX.Element;
export {};