import React from "react"; import { Link } from "react-router-dom"; import { CopyButton } from "./button"; import { Facepile } from "./Facepile"; import { Avatar } from "./Avatar"; import { ReactComponent as VideoIcon } from "./icons/Video.svg"; import styles from "./CallTile.module.css"; export function CallTile({ name, avatarUrl, roomUrl, participants }) { return ( } className={styles.avatar} />
{name}

{roomUrl}

{participants && }
); }