import React from "react"; import styles from "./Facepile.module.css"; import classNames from "classnames"; import { Avatar } from "./Avatar"; import { getAvatarUrl } from "./matrix-utils"; export function Facepile({ className, client, participants, max, size, ...rest }) { const _size = size === "md" ? 36 : 24; const _overlap = size === "md" ? 8 : 2; return (