v4web-components
Version:
Stencil Component Starter
22 lines (21 loc) • 385 B
TypeScript
export declare class LabDsBadge {
label: string;
variant: 'outlined' | 'ghost' | 'dot';
state: 'success' | 'error' | 'warning';
size: 'medium' | 'small';
states: {
success: {
color: string;
icon: string;
};
error: {
color: string;
icon: string;
};
warning: {
color: string;
icon: string;
};
};
render(): any;
}