import classNames from "@calcom/lib/classNames"; import Avatar from "./Avatar"; export type AvatarGroupProps = { size: "sm" | "lg"; items: { image: string; title?: string; alt?: string; }[]; className?: string; accepted?: boolean; }; export const AvatarGroup = function AvatarGroup(props: AvatarGroupProps) { const avatars = props.items.slice(0, 4); const LENGTH = props.items.length; return ( ); }; export default AvatarGroup;