UNPKG

@selfcommunity/react-ui

Version:

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

7 lines (6 loc) 285 B
import { BoxProps } from '@mui/material'; import { CategoryProps } from '../Category'; export interface DefaultDrawerContentProps extends BoxProps { CategoryItemProps?: CategoryProps; } export default function DefaultDrawerContent(inProps: DefaultDrawerContentProps): JSX.Element;