UNPKG

scrollbun

Version:

React component for horizontal scrolling

11 lines (7 loc) 259 B
import * as React from 'react'; type Props = { direction?: 'horizontal' | 'vertical' scrollRate?: number } & Omit<React.HTMLProps<HTMLDivElement>, 'onWheel'> declare function Scrollbun(props: Props): React.ReactElement export { Scrollbun as default };