UNPKG

primereact

Version:

PrimeReact is an open source UI library for React featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with Prime

42 lines (39 loc) 1.16 kB
/** * * A set of Avatars can be displayed together using the AvatarGroup component. * * [Live Demo](https://www.primereact.org/avatar/) * * @module avatargroup * */ import * as React from 'react'; /** * Defines valid properties in Avatar component. In addition to these, all properties of HTMLDivElement can be used in this component. * @group Properties */ export interface AvatarGroupProps extends Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, 'ref'> { /** * Used to get the child elements of the component. * @readonly */ children?: React.ReactNode | undefined; } /** * **PrimeReact - AvatarGroup** * * _A set of Avatars can be displayed together using the AvatarGroup component._ * * [Live Demo](https://www.primereact.org/avatargroup/) * --- --- * ![PrimeReact](https://primefaces.org/cdn/primereact/images/logo-100.png) * * @group Component */ export declare class AvatarGroup extends React.Component<AvatarGroupProps, any> { /** * Used to get container element. * @return {HTMLDivElement} Container element */ public getElement(): HTMLDivElement; }