securityos/node_modules/framer-motion/dist/es/context/MotionConfigContext.mjs

13 lines
223 B
JavaScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
import { createContext } from 'react';
/**
* @public
*/
const MotionConfigContext = createContext({
transformPagePoint: (p) => p,
isStatic: false,
reducedMotion: "never",
});
export { MotionConfigContext };