UNPKG

reablocks

Version:
23 lines (21 loc) 668 B
import { AvatarGroupTheme } from './AvatarGroupTheme'; import { default as React } from 'react'; export interface AvatarGroupProps extends React.HTMLAttributes<HTMLDivElement> { /** * The avatars to display in the group. */ children: React.ReactNode; /** * Additional CSS classes to apply to the avatar group */ className?: string; /** * The maximum number of avatars to show before +x more */ size?: number; /** * Theme for the AvatarGroup */ theme?: AvatarGroupTheme; } export declare const AvatarGroup: React.ForwardRefExoticComponent<AvatarGroupProps & React.RefAttributes<HTMLDivElement>>;