UNPKG

use-smooth-scroll

Version:

React hook which gives a smooth scrolling function.

10 lines (8 loc) 226 B
import { RefObject } from 'react' export default function useSmoothScroll( axis: 'x' | 'y', ref: RefObject<HTMLElement>, ): ( target: number, options?: { duration?: number; easing?: (p: number) => number }, ) => void