This commit is contained in:
2023-09-25 19:37:08 +05:00
parent 16768bfe7d
commit 1deb30f6ca
3 changed files with 14 additions and 10 deletions
@@ -29,15 +29,15 @@ function UsersManagementModal({
const [users] = useStreamUserStore((state) => [state.users]);
return (
<div className="relative lg:p-10 p-6 bg-[#131317] rounded shadow-lg w-[320px] flex flex-col gap-2">
<div className="relative lg:p-10 p-6 bg-[#131317] rounded shadow-lg w-[360px] flex flex-col gap-2">
<div className="flex flex-col lg:gap-8 gap-4">
<p className="font-gilroy lg:text-2xl">
<Trans i18nKey={"members"}>Участники</Trans>
</p>
<div className="flex flex-col gap-2">
<div className="flex flex-col gap-4">
{users.map((user: any, index: number) => (
<div key={index} className="relative">
<div className="flex items-center gap-2 text-white">
<div className="flex items-center gap-4 text-white">
<div className="relative flex flex-col">
{user.admin ? <AdminUserIcon /> : <UserIcon />}
</div>
@@ -77,19 +77,19 @@ function UsersManagementModal({
)}
{!user.muted ? (
<p
<button
onClick={() => handleUpdate(user.id, { muted: true })}
className="outline-none"
>
<MicroOnIcon />
</p>
</button>
) : (
<p
<button
onClick={() => handleUpdate(user.id, { muted: false })}
className="outline-none"
>
<MicroOffIcon />
</p>
</button>
)}
</>
)}