function ChannelBadge({ channel }) { const colors = { WhatsApp: '#2bb741', Email: '#e5a22a', SMS: '#00a4b7', }; return ( {channel} ); } function ActivityDot({ status }) { const color = status === 'away' ? '#e5a22a' : '#dc2626'; return (