17 lines
342 B
TypeScript
17 lines
342 B
TypeScript
/**
|
|
*
|
|
* A set of Avatars can be displayed together using the AvatarGroup component.
|
|
*
|
|
* [Live Demo](https://www.primevue.org/avatar/)
|
|
*
|
|
* @module avatargroupstyle
|
|
*
|
|
*/
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
export enum AvatarGroupClasses {
|
|
root = 'p-avatar-group'
|
|
}
|
|
|
|
export interface AvatarGroupStyle extends BaseStyle {}
|