import React from "react"; import styles from "./Facepile.module.css"; import classNames from "classnames"; import { Avatar } from "./Avatar"; export function Facepile({ className, participants, ...rest }) { return (
member.name).join(", ")} {...rest} > {participants.slice(0, 3).map((member, i) => ( ))} {participants.length > 3 && ( )}
); }