@kelvininc/ui-components
Version:
Kelvin UI Components
12 lines (11 loc) • 312 B
TypeScript
import { EBadgeType, IBadge } from './badge.types';
/**
* @part badge - The badge.
*/
export declare class KvBadge implements IBadge {
/** (optional) Defines the badge type.*/
type: EBadgeType;
/** (optional) If `true` the badge is in disabled state. */
disabled: boolean;
render(): any;
}