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)

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