@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)
14 lines (13 loc) • 364 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type ReactNode } from 'react';
/**
* A drop indicator to be used when dragging over a group of items
*/
export declare const GroupDropIndicator: import("react").ForwardRefExoticComponent<{
children: ReactNode;
isActive: boolean;
testId?: string;
} & import("react").RefAttributes<HTMLDivElement>>;