12345678910111213 |
- import * as React from 'react';
- import type { AntTreeNodeProps, SwitcherIcon, TreeLeafIcon } from '../Tree';
- interface SwitcherIconProps {
- prefixCls: string;
- treeNodeProps: AntTreeNodeProps;
- switcherIcon?: SwitcherIcon;
- switcherLoadingIcon?: React.ReactNode;
- showLine?: boolean | {
- showLeafIcon: boolean | TreeLeafIcon;
- };
- }
- declare const SwitcherIconCom: React.FC<SwitcherIconProps>;
- export default SwitcherIconCom;
|