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 ? 'mr-1 pl-1.5 pr-2' : 'px-1.5'}`} > {totalCount} {unreadCount > 0 && ( {unreadCount} )} ); };