import { UserMuted } from '@components/user/muted'; import { Popover, Transition } from '@headlessui/react'; import { MicMute } from 'iconoir-react'; import { Fragment } from 'react'; export const ChannelBlackList = ({ blacklist }: { blacklist: any }) => { return ( {({ open }) => ( <>

Your muted list

Currently, unmute only affect locally, when you move to new client, muted list will loaded again

{blacklist.map((item: any) => ( ))}
)}
); };