primevue-mirror/components/lib/avatar/style/AvatarStyle.d.ts

28 lines
520 B
TypeScript

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