UNPKG

@atlaskit/avatar-group

Version:

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

12 lines (11 loc) 216 B
/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type ReactNode } from 'react'; declare const Stack: FC<{ children: ReactNode; testId?: string; 'aria-label': string; }>; export default Stack;