UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB

48 lines (47 loc) 1.13 kB
import { BaseStyle } from 'primeng/base'; import * as i0 from "@angular/core"; export declare class AvatarStyle extends BaseStyle { name: string; theme: ({ dt }: { dt: any; }) => string; classes: { root: ({ props }: { props: any; }) => (string | { 'p-avatar-image': boolean; 'p-avatar-circle': boolean; 'p-avatar-lg': boolean; 'p-avatar-xl': boolean; })[]; label: string; icon: string; }; static ɵfac: i0.ɵɵFactoryDeclaration<AvatarStyle, never>; static ɵprov: i0.ɵɵInjectableDeclaration<AvatarStyle>; } /** * * Avatar represents people using icons, labels and images. * * - [Live Demo](https://primeng.org/avatar) * * @module avatarstyle * */ export declare 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 { }