import { Button } from './ui' import { t } from '@/lib/i18n' interface NotificationBadgeButtonProps { unreadCount: number onClick: () => void } export function NotificationBadgeButton({ unreadCount, onClick }: NotificationBadgeButtonProps): React.ReactElement { const ariaLabel = unreadCount > 0 ? `${unreadCount} ${unreadCount === 1 ? t('notifications.badge.unread.singular') : t('notifications.badge.unread.plural')}` : t('notifications.badge.noUnread') return ( ) }