UNPKG

ngx-avatar-letters

Version:

Angular component to generate avatar initials with configurable styles.

11 lines (10 loc) 299 B
export declare const AVATAR_SHAPES: readonly ["circle", "square", "rounded"]; export type AvatarShape = typeof AVATAR_SHAPES[number]; export interface AvatarConfig { name: string; size?: number; bgColor?: string; textColor?: string; shape?: AvatarShape; imageUrl?: string; }