UNPKG

@atlaskit/pragmatic-drag-and-drop-react-drop-indicator

Version:

An optional Pragmatic drag and drop package containing react components that provide a visual indication about what the user will achieve when the drop (eg lines)

7 lines (6 loc) 333 B
import React from 'react'; import type { Instruction } from '@atlaskit/pragmatic-drag-and-drop-hitbox/tree-item'; export type DropIndicatorProps = { instruction: Instruction; }; export declare function DropIndicator({ instruction }: DropIndicatorProps): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;