iconUtil.d.ts 382 B

12345678
  1. import type { AntTreeNodeProps } from '../Tree';
  2. export interface SwitcherIconProps extends AntTreeNodeProps {
  3. expanded: boolean;
  4. loading: boolean;
  5. }
  6. export default function renderSwitcherIcon(prefixCls: string, switcherIcon: any, props: SwitcherIconProps, leafIcon?: (props: SwitcherIconProps) => any, showLine?: boolean | {
  7. showLeafIcon: boolean;
  8. } | undefined): any;