2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Avatar represents people using icons, labels and images.
|
|
|
|
*
|
|
|
|
* - [Live Demo](https://primevue.org/avatar)
|
|
|
|
*
|
|
|
|
* @module avatarstyle
|
|
|
|
*
|
|
|
|
*/
|
2023-10-02 13:15:41 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum AvatarClasses {
|
|
|
|
root = 'p-avatar',
|
|
|
|
label = 'p-avatar-label',
|
|
|
|
icon = 'p-avatar-icon'
|
|
|
|
}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface AvatarStyle extends BaseStyle {}
|