@kushki/ng-suka
Version:
<p align="center"> <h1 align="center">Suka Components Angular</h1> <p align="center"> An Angular implementation of the Suka Design System </p> </p>
14 lines (13 loc) • 338 B
TypeScript
export declare type BadgeType = 'default' | 'info' | 'success' | 'attention' | 'alert' | 'disabled';
export declare class Badge {
/**
* Badge type. Defaults to `default`.
*/
type: BadgeType;
/**
* Badge size. Defaults to `md`.
*/
size: 'sm' | 'md';
class: string;
readonly attrClass: string;
}