diff --git a/client/src/components/popups/ParticipantsPopup.tsx b/client/src/components/popups/ParticipantsPopup.tsx
index 6d3f68d..491876b 100644
--- a/client/src/components/popups/ParticipantsPopup.tsx
+++ b/client/src/components/popups/ParticipantsPopup.tsx
@@ -5,12 +5,19 @@ import VideoOffFilledIcon from "../icons/VideoOffFilledIcon";
import HandRaisedFilledIcon from "../icons/HandRaisedFilledIcon";
import XMarkFilledIcon from "../icons/XMarkFilledIcon";
import Avatar from "../ui/Avatar";
+import Button from "../ui/Button";
+import ShareFilledIcon from "../icons/ShareFilledIcon";
export default function ParticipantsPopup() {
const participants = [1, 2, 3];
+
return (
-
-
+
+
{participants.map((participant, index) => (
<>
@@ -21,6 +28,25 @@ export default function ParticipantsPopup() {
>
))}
+
);
diff --git a/client/src/components/popups/SharePopup.tsx b/client/src/components/popups/SharePopup.tsx
index de971e6..6ac7335 100644
--- a/client/src/components/popups/SharePopup.tsx
+++ b/client/src/components/popups/SharePopup.tsx
@@ -13,6 +13,7 @@ function SharePopup({ link }: { link: string }) {
{link}
diff --git a/client/src/components/ui/UserCamera.tsx b/client/src/components/ui/UserCamera.tsx
index 9525b77..9b7a622 100644
--- a/client/src/components/ui/UserCamera.tsx
+++ b/client/src/components/ui/UserCamera.tsx
@@ -34,7 +34,6 @@ export default function UserCamera({
onMute,
onVideoOff,
onCanControl,
-
isSpeaking = false,
isAdmin = false,
name = "Гость",
@@ -53,25 +52,18 @@ export default function UserCamera({
: "0.139vw solid #FFFFFF4D",
}}
className={clsx(
- "aspect-square rounded-[1.667vw] bg-yellow-500 relative flex-shrink-0 pointer-events-auto",
+ "aspect-square group rounded-[1.667vw] bg-yellow-500 relative flex-shrink-0 transition-all duration-300 pointer-events-auto hover:w-[10.833vw]w-[6.944vw] shadow-[0_4px_40px_0_rgba(15,16,17,0.1),0_2px_2px_0_rgba(0,0,0,0.06)]",
isAdmin && "order-3"
)}
>
{isAdmin && }
-
- {isHover && (
-
- {name}
-
- )}
-
+
+
+ {name}
+