@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
14 lines (13 loc) • 380 B
TypeScript
import { ChipProps } from '@mui/material';
export interface NotificationNewChipProps extends ChipProps {
/**
* Overrides or extends the styles applied to the component.
* @default null
*/
className?: string;
/**
* Any other properties
*/
[p: string]: any;
}
export default function NewChip(inProps: NotificationNewChipProps): JSX.Element;