import React from 'react' import { CommonNotificationProps, GovernanceAnnouncementNotification as GovernanceAnnouncementNotificationType } from '../../types' import NotificationItem from '../../NotificationItem' import GovernanceIcon from '../../../Icons/Notifications/GovernanceIcon' /** * @deprecated Should start using the same component migrated to UI2. */ const GovernanceAnnouncementNotification = ({ notification, locale }: CommonNotificationProps) => ( }} timestamp={notification.timestamp} isNew={!notification.read} locale={locale} >

{notification.metadata.title}

{notification.metadata.description}{' '}

) export default GovernanceAnnouncementNotification