@scania/tegel
Version:
Tegel Design System
18 lines (17 loc) • 449 B
TypeScript
export declare class TdsBadge {
/** Value shown in Badge */
value: string;
/** Changes visibility of Badge */
hidden: boolean;
/** Sets component size. */
size: 'lg' | 'sm';
/** Defines aria-live attribute */
tdsAriaLive: 'off' | 'polite' | 'assertive';
tdsAriaLabel: string;
shape: string;
text: string;
watchProps(): void;
componentWillLoad(): void;
checkProps(): void;
render(): any;
}