MotionConfigContext.mjs 286 Bytes
"use client";
import { createContext } from 'react';

/**
 * @public
 */
const MotionConfigContext = createContext({
    transformPagePoint: (p) => p,
    isStatic: false,
    reducedMotion: "never",
});

export { MotionConfigContext };
//# sourceMappingURL=MotionConfigContext.mjs.map