import React, { } from 'react';
import { WhatsAppOutlined, MailOutlined } from '@ant-design/icons';
import { WABIcon, } from '@/components/Icons';
const ChannelLogo = ({channel}) => {
// if is array, get last
if (Array.isArray(channel)) {
channel = channel[channel.length - 1];
}
const _channel = (channel || '').toLowerCase();
switch (_channel) {
case 'waba':
return ;
case 'wa':
return ;
case 'email':
return
default:
// return
return ;
}
}
export default ChannelLogo;