@clr/angular
Version:
Angular components for Clarity
26 lines (23 loc) • 811 B
TypeScript
import { Type } from '@clr/angular/emphasis/common';
import * as i0 from '@angular/core';
declare enum ClrBadgeColors {
None = "",
Info = "info",
Warning = "warning",
Danger = "danger",
Success = "success",
Gray = "gray",
Blue = "blue",
LightBlue = "light-blue",
Orange = "orange",
Purple = "purple"
}
declare class ClrBadge {
color: ClrBadgeColors | string;
type: Type | string;
get isOutlined(): boolean;
get colorClass(): string;
static ɵfac: i0.ɵɵFactoryDeclaration<ClrBadge, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ClrBadge, "clr-badge", never, { "color": { "alias": "clrColor"; "required": false; }; "type": { "alias": "clrType"; "required": false; }; }, {}, never, ["*"], true, never>;
}
export { ClrBadge, ClrBadgeColors };