securityos/node_modules/framer-motion/dist/es/render/dom/features-max.mjs

15 lines
280 B
JavaScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
import { drag } from '../../motion/features/drag.mjs';
import { layout } from '../../motion/features/layout.mjs';
import { domAnimation } from './features-animation.mjs';
/**
* @public
*/
const domMax = {
...domAnimation,
...drag,
...layout,
};
export { domMax };