function ChannelBadge({ channel }) { const colors = { WhatsApp: '#2bb741', Email: '#e5a22a', SMS: '#00a4b7', }; return ( {channel} ); } function ActivityDot({ status }) { const color = status === 'away' ? '#e5a22a' : '#dc2626'; return ( ); } function UnreadBadge({ count }) { if (!count) return null; return ( {count > 99 ? '99+' : count} ); } const CHAT_LIST_HEIGHT = 'min(640px, calc(100vh - 220px))'; export function ChatConversationList({ contacts, activeContactId, onSelectContact, isMobile = false, }) { return ( ); }