@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
25 lines (18 loc) • 738 B
TypeScript
import { BoxProps } from '@mui/material';
export declare const PREFIX = "SCDefaultDrawerSkeleton";
export type DefaultDrawerSkeletonProps = BoxProps;
/**
* > API documentation for the Community-JS Default Drawer Skeleton component. Learn about the available props and the CSS API.
#### Import
```jsx
import {SCDefaultDrawerSkeleton} from '@selfcommunity/react-ui';
```
#### Component Name
The name `SCDefaultDrawerSkeleton-root` can be used when providing style overrides in the theme.
#### CSS
|Rule Name|Global class|Description|
|---|---|---|
|root|.SCDefaultDrawerSkeleton-root|Styles applied to the root element.|
*
*/
export default function DefaultDrawerSkeleton(props: DefaultDrawerSkeletonProps): JSX.Element;