UNPKG

@selfcommunity/react-ui

Version:

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

8 lines (7 loc) 280 B
import { SnackbarProps } from '@mui/material'; export interface UserDeletedSnackBarProps extends SnackbarProps { className?: string; open: boolean; handleClose: () => void; } export default function UserDeletedSnackBar(inProps: UserDeletedSnackBarProps): JSX.Element;