ICT30016-Assignment-3/node_modules/framer-motion/dist/es/motion/features/drag.mjs
dlawler489 a79a6afd34 intial
intial
2025-09-16 12:09:52 +10:00

17 lines
463 B
JavaScript

import { DragGesture } from '../../gestures/drag/index.mjs';
import { PanGesture } from '../../gestures/pan/index.mjs';
import { MeasureLayout } from './layout/MeasureLayout.mjs';
import { HTMLProjectionNode } from '../../projection/node/HTMLProjectionNode.mjs';
const drag = {
pan: {
Feature: PanGesture,
},
drag: {
Feature: DragGesture,
ProjectionNode: HTMLProjectionNode,
MeasureLayout,
},
};
export { drag };