UNPKG

a-multilayout-splitter

Version:

A React package designed to facilitate the division of your views into distinct sections, offering effortless resizing and support for intricate layouts.

11 lines (10 loc) 296 B
/// <reference types="react" /> import "../style/DragHandle.css"; declare function DragHandle({ mode, onMouseDown, onTouchStart, props, position, }: { mode: string; onMouseDown: any; onTouchStart: any; props: any; position: number; }): JSX.Element; export default DragHandle;