Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
16 lines
625 B
Plaintext
16 lines
625 B
Plaintext
import { animations } from '../../../motion/features/animations.mjs';
|
|
import { drag } from '../../../motion/features/drag.mjs';
|
|
import { gestureAnimations } from '../../../motion/features/gestures.mjs';
|
|
import { layout } from '../../../motion/features/layout.mjs';
|
|
import { createMotionComponentFactory } from '../create-factory.mjs';
|
|
import { createDomVisualElement } from '../../dom/create-visual-element.mjs';
|
|
|
|
const createMotionComponent = /*@__PURE__*/ createMotionComponentFactory({
|
|
...animations,
|
|
...gestureAnimations,
|
|
...drag,
|
|
...layout,
|
|
}, createDomVisualElement);
|
|
|
|
export { createMotionComponent };
|