import { Highlighter } from 'lucide-react' import { Event } from 'nostr-tools' import { useTranslation } from 'react-i18next' import Notification from './Notification' export function HighlightNotification({ notification, isNew = false, navIndex }: { notification: Event isNew?: boolean navIndex?: number }) { const { t } = useTranslation() return ( } sender={notification.pubkey} sentAt={notification.created_at} targetEvent={notification} description={t('highlighted your note')} isNew={isNew} navIndex={navIndex} /> ) }