import { MessageSquare } from 'lucide-react'; interface UnreadCommentsBadgeProps { unreadCount: number; totalCount: number; } export const UnreadCommentsBadge = ({ unreadCount, totalCount, }: UnreadCommentsBadgeProps): React.JSX.Element | null => { if (totalCount === 0) return null; return ( 0 ? 'bg-blue-500/20 text-blue-400' : 'bg-[var(--color-surface-raised)] text-[var(--color-text-muted)]' }`} title={unreadCount > 0 ? `${unreadCount} unread` : 'All read'} > {totalCount} ); };