@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
11 lines (10 loc) • 643 B
TypeScript
import { SCNotificationIncubatorType } from '@selfcommunity/types';
import { NotificationItemProps } from '../../../shared/NotificationItem';
export interface NotificationIncubatorApprovedProps extends Pick<NotificationItemProps, Exclude<keyof NotificationItemProps, 'image' | 'disableTypography' | 'primary' | 'primaryTypographyProps' | 'secondary' | 'secondaryTypographyProps' | 'actions' | 'footer' | 'isNew'>> {
/**
* Notification obj
* @default null
*/
notificationObject: SCNotificationIncubatorType;
}
export default function IncubatorApprovedNotification(props: NotificationIncubatorApprovedProps): JSX.Element;