UNPKG

use-draggable-scroll

Version:

React hook to add draggability to scrollable content easily

10 lines (9 loc) 282 B
import { RefObject } from 'react'; export default function useDraggableScroll(ref: RefObject<HTMLElement>, options?: { direction?: 'vertical' | 'horizontal' | 'both'; }): { onMouseDown: (event: { clientX: number; clientY: number; }) => void; };