@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
16 lines (15 loc) • 766 B
TypeScript
import { SCNotificationDeletedForType } from '@selfcommunity/types';
import { NotificationItemProps } from '../../../shared/NotificationItem';
export interface NotificationKindlyNoticeFlagProps extends Pick<NotificationItemProps, Exclude<keyof NotificationItemProps, 'image' | 'disableTypography' | 'primary' | 'primaryTypographyProps' | 'secondary' | 'secondaryTypographyProps' | 'actions' | 'footer' | 'isNew'>> {
/**
* Notification obj
* @default null
*/
notificationObject: SCNotificationDeletedForType;
}
/**
* This component render the content of the notification of type kindly notice flag
* @constructor
* @param props
*/
export default function KindlyNoticeFlagNotification(props: NotificationKindlyNoticeFlagProps): JSX.Element;