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

28 lines
520 B
TypeScript
Raw Normal View History

/**
*
* 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';
export enum AvatarClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-avatar',
2024-05-22 13:52:02 +00:00
/**
* Class name of the label element
*/
label = 'p-avatar-label',
2024-05-22 13:52:02 +00:00
/**
* Class name of the icon element
*/
icon = 'p-avatar-icon'
}
2023-10-02 13:15:41 +00:00
export interface AvatarStyle extends BaseStyle {}