| 1234567891011121314151617181920212223242526272829303132333435363738 |
- export interface TdBadgeProps {
- color?: {
- type: StringConstructor;
- value?: string;
- };
- content?: {
- type: StringConstructor;
- value?: string;
- };
- count?: {
- type: null;
- value?: string | number;
- };
- dot?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- maxCount?: {
- type: NumberConstructor;
- value?: number;
- };
- offset?: {
- type: ArrayConstructor;
- value?: Array<string | number>;
- };
- shape?: {
- type: StringConstructor;
- value?: 'circle' | 'square' | 'bubble' | 'ribbon';
- };
- showZero?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- size?: {
- type: StringConstructor;
- value?: 'medium' | 'large';
- };
- }
|