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