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)

17 lines (16 loc) 503 B
/** * @jsxRuntime classic * @jsx jsx */ import type { Edge } from '@atlaskit/pragmatic-drag-and-drop-hitbox/types'; import type { CSSColor, CSSSize } from '../internal-types'; type LineType = 'terminal' | 'no-terminal' | 'terminal-no-bleed'; export declare function Line({ edge, gap, indent, strokeColor, strokeWidth, type, }: { edge: Edge; indent?: CSSSize; gap?: CSSSize; strokeColor?: CSSColor; strokeWidth?: CSSSize; type?: LineType; }): JSX.Element; export default Line;