UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

14 lines (13 loc) 449 B
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;