import React from "react"; import classNames from "@lib/classNames"; import Avatar from "@components/ui/Avatar"; export type AvatarGroupProps = { border?: string; // this needs to be the color of the parent container background, i.e.: border-white dark:border-gray-900 size: number; truncateAfter?: number; items: { image: string; title?: string; alt?: string; }[]; className?: string; }; export const AvatarGroup = function AvatarGroup(props: AvatarGroupProps) { return ( ); }; export default AvatarGroup;