UNPKG

@atlaskit/avatar-group

Version:

An avatar group displays a number of avatars grouped together in a stack or grid.

15 lines (14 loc) 308 B
/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type ReactNode } from 'react'; import { type AvatarGroupSize } from './types'; declare const Stack: FC<{ children: ReactNode; testId?: string; 'aria-label': string; size: AvatarGroupSize; id?: string; }>; export default Stack;