| 1234567891011121314151617181920212223 |
- import { BadgeProps } from '../badge/index';
- export interface TdSideBarItemProps {
- badgeProps?: {
- type: ObjectConstructor;
- value?: BadgeProps;
- };
- disabled?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- icon?: {
- type: null;
- value?: string | object;
- };
- label?: {
- type: StringConstructor;
- value?: string;
- };
- value?: {
- type: null;
- value?: string | number;
- };
- }
|