import React from "react"; import Avatar from "@components/ui/Avatar"; import classNames from "@lib/classNames"; // import * as Tooltip from "@radix-ui/react-tooltip"; export type AvatarGroupProps = { size: number; truncateAfter?: number; items: { image: string; title?: string; alt: string; }[]; className?: string; }; export const AvatarGroup = function AvatarGroup(props: AvatarGroupProps) { /* const truncatedAvatars: string[] = props.items.length > props.truncateAfter ? props.items .slice(props.truncateAfter) .map((item) => item.title) .filter(Boolean) : [];*/ return ( ); }; export default AvatarGroup;