iconUtil.d.ts 449 B

12345678910111213
  1. import * as React from 'react';
  2. import type { AntTreeNodeProps, SwitcherIcon, TreeLeafIcon } from '../Tree';
  3. interface SwitcherIconProps {
  4. prefixCls: string;
  5. treeNodeProps: AntTreeNodeProps;
  6. switcherIcon?: SwitcherIcon;
  7. switcherLoadingIcon?: React.ReactNode;
  8. showLine?: boolean | {
  9. showLeafIcon: boolean | TreeLeafIcon;
  10. };
  11. }
  12. declare const SwitcherIconCom: React.FC<SwitcherIconProps>;
  13. export default SwitcherIconCom;