/** * * Avatar represents people using icons, labels and images. * * - [Live Demo](https://primevue.org/avatar) * * @module avatarstyle * */ import { BaseStyle } from '../../base/style'; export enum AvatarClasses { root = 'p-avatar', label = 'p-avatar-label', icon = 'p-avatar-icon' } export interface AvatarStyle extends BaseStyle {}