claude-web/node_modules/primevue/avatar/style/index.d.ts

28 lines
534 B
TypeScript
Raw Permalink Normal View History

2026-02-23 02:23:38 +00:00
/**
*
* Avatar represents people using icons, labels and images.
*
* - [Live Demo](https://primevue.org/avatar)
*
* @module avatarstyle
*
*/
import type { BaseStyle } from '@primevue/core/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 {}