@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) • 420 B
TypeScript
export declare type BadgeType = 'default' | 'info' | 'success' | 'attention' | 'alert' | 'disabled';
export declare class Badge {
/**
* Sets the badge type. Can be `default`, `info`, `success`, `attention`, `alert` or `disabled`. Defaults to `default`.
*/
type: BadgeType;
/**
* Badge size. Defaults to `md`.
*/
size: 'sm' | 'md';
class: string;
readonly attrClass: string;
}