dashboard/frontend/node_modules/framer-motion/dist/es/render/dom/features-animation.mjs

16 lines
378 B
JavaScript
Raw Normal View History

2025-12-16 08:16:27 +09:00
"use client";
import { animations } from '../../motion/features/animations.mjs';
import { gestureAnimations } from '../../motion/features/gestures.mjs';
import { createDomVisualElement } from './create-visual-element.mjs';
/**
* @public
*/
const domAnimation = {
renderer: createDomVisualElement,
...animations,
...gestureAnimations,
};
export { domAnimation };