UNPKG

@atlaskit/avatar-group

Version:

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

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