dropIndicator.d.ts 357 B

1234567891011
  1. import React from 'react';
  2. import type { DirectionType } from '../../config-provider';
  3. export declare const offset = 4;
  4. declare function dropIndicatorRender(props: {
  5. dropPosition: -1 | 0 | 1;
  6. dropLevelOffset: number;
  7. indent: number;
  8. prefixCls: string;
  9. direction: DirectionType;
  10. }): React.JSX.Element;
  11. export default dropIndicatorRender;