Files
GNX-mailEnterprise/frontend/node_modules/framer-motion/dist/es/render/dom/features-animation.mjs
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

15 lines
364 B
JavaScript

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 };