UNPKG

@selfcommunity/react-ui

Version:

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

11 lines (10 loc) 417 B
import { MenuProps } from '@mui/material'; import { SnippetNotificationsProps } from '../SnippetNotifications'; export interface NotificationsMenuProps extends MenuProps { /** * Props to spread to the SnippetNotifications component * @default {} */ SnippetNotificationsProps?: SnippetNotificationsProps; } export default function NotificationMenu(inProps: NotificationsMenuProps): JSX.Element;