UNPKG

@mui/material

Version:

Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

58 lines (54 loc) 1.46 kB
import * as React from 'react'; import { InternalStandardProps as StandardProps, Theme } from '@mui/material'; import { OverridableStringUnion } from '@mui/types'; import { SxProps } from '@mui/system'; import { AvatarGroupClasses } from './avatarGroupClasses'; export interface AvatarGroupPropsVariantOverrides {} export interface AvatarGroupProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>> { /** * The avatars to stack. */ children?: React.ReactNode; /** * Override or extend the styles applied to the component. */ classes?: Partial<AvatarGroupClasses>; /** * Max avatars to show before +x. * @default 5 */ max?: number; /** * Spacing between avatars. * @default 'medium' */ spacing?: 'small' | 'medium' | number; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps<Theme>; /** * The total number of avatars. Used for calculating the number of extra avatars. * @default children.length */ total?: number; /** * The variant to use. * @default 'circular' */ variant?: OverridableStringUnion< 'circular' | 'rounded' | 'square', AvatarGroupPropsVariantOverrides >; } /** * * Demos: * * - [Avatars](https://mui.com/components/avatars/) * * API: * * - [AvatarGroup API](https://mui.com/api/avatar-group/) */ export default function AvatarGroup(props: AvatarGroupProps): JSX.Element;