UNPKG

@acrool/react-table

Version:
8 lines (7 loc) 263 B
/// <reference types="react" /> import { DraggableAttributes } from '@dnd-kit/core'; interface IProps extends DraggableAttributes { isDragging: boolean; } declare const DragHandle: ({ isDragging, ...props }: IProps) => JSX.Element; export default DragHandle;