UNPKG

@kelvininc/ui-components

Version:
11 lines (10 loc) 272 B
export interface IBadge { /** (optional) Defines the badge type.*/ type?: EBadgeType; /** (optional) If `true` the badge is in disabled state. */ disabled?: boolean; } export declare enum EBadgeType { Primary = "primary", Secondary = "secondary" }