| 12345678910111213141516171819202122232425262728293031 |
- import { TabValue } from '../tabs/index';
- export interface TdTabPanelProps {
- badgeProps?: {
- type: ObjectConstructor;
- value?: object;
- };
- disabled?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- icon?: {
- type: null;
- value?: string | object;
- };
- label?: {
- type: StringConstructor;
- value?: string;
- };
- lazy?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- panel?: {
- type: StringConstructor;
- value?: string;
- };
- value?: {
- type: null;
- value?: TabValue;
- };
- }
|