import { BaseStackType } from './constants'; import HoverOverlay from './HoverOverlay'; import PositioningWrapper from './PositioningWrapper'; import AvatarFoundation from '../Avatar/Foundation'; type Props = BaseStackType & { isHovered: boolean; isPressed: boolean; }; export default function AvatarGroupAddCollaboratorsButton({ hovered, isHovered, isPressed, pileCount, size, }: Props) { return ( ); }