function ChannelBadge({ channel }) { const colors = { WhatsApp: '#2bb741', Email: '#e5a22a', SMS: '#00a4b7', }; return ( {channel} ); } function PresenceDot({ status }) { const color = status === 'online' ? '#16a34a' : status === 'away' ? '#e5a22a' : '#dc2626'; return ( ); } export function ChatConversationList({ contacts, activeContactId, onSelectContact, isMobile = false, }) { return ( ); }