14 lines
449 B
TypeScript
14 lines
449 B
TypeScript
|
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;
|