@doku-dev/doku-fragment
Version:
A new Angular UI library that moving away from Bootstrap and built from scratch.
17 lines (16 loc) • 656 B
TypeScript
import { NgClass } from '@angular/common';
import { DokuBadgeColor, DokuBadgeVariant } from './badge.types';
import * as i0 from "@angular/core";
export declare class DokuBadge {
/**
* The color of the badge. Default value is 'green'.
*/
color: DokuBadgeColor;
/**
* The variant of the badge. Default value is 'filled'.
*/
variant: DokuBadgeVariant;
protected get classes(): NgClass['ngClass'];
static ɵfac: i0.ɵɵFactoryDeclaration<DokuBadge, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DokuBadge, "doku-badge", ["dokuBadge"], { "color": "color"; "variant": "variant"; }, {}, never, ["*"], true>;
}