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

19 lines
357 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 {
root = 'p-avatar',
label = 'p-avatar-label',
icon = 'p-avatar-icon'
}
2023-10-02 13:15:41 +00:00
export interface AvatarStyle extends BaseStyle {}