Favivon - Correção

This commit is contained in:
2026-05-30 19:59:39 -03:00
parent 76ddaa815d
commit d7dfd221f0
32859 changed files with 5459654 additions and 404 deletions
+17
View File
@@ -0,0 +1,17 @@
import { registerAction, dragAction } from '@use-gesture/core/actions'
import { EventTypes, Handler, UserDragConfig } from '@use-gesture/core/types'
import { useRecognizers } from './useRecognizers'
/**
* Drag hook.
*
* @param {Handler<'drag'>} handler - the function fired every time the drag gesture updates
* @param {UserDragConfig} config - the config object including generic options and drag options
*/
export function useDrag<EventType = EventTypes['drag'], Config extends UserDragConfig = UserDragConfig>(
handler: Handler<'drag', EventType>,
config?: Config
) {
registerAction(dragAction)
return useRecognizers({ drag: handler }, config || {}, 'drag')
}