2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* A set of Avatars can be displayed together using the AvatarGroup component.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/avatar/)
|
|
|
|
*
|
|
|
|
* @module avatargroupstyle
|
|
|
|
*
|
|
|
|
*/
|
2023-10-02 13:15:41 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum AvatarGroupClasses {
|
|
|
|
root = 'p-avatar-group'
|
|
|
|
}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface AvatarGroupStyle extends BaseStyle {}
|