UNPKG

@xui/components

Version:

xUI Components for Angular

7 lines (6 loc) 299 B
import { InjectionToken } from '@angular/core'; export type BadgeColor = 'primary' | 'primary-alt' | 'secondary' | 'success' | 'warning' | 'error' | 'info'; export declare const XUI_BADGE_DEFAULT_OPTIONS: InjectionToken<XuiBadgeOptions>; export interface XuiBadgeOptions { color?: BadgeColor; }