securityos/node_modules/framer-motion/dist/es/render/html/config-motion.mjs

13 lines
428 B
JavaScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
import { makeUseVisualState } from '../../motion/utils/use-visual-state.mjs';
import { scrapeMotionValuesFromProps } from './utils/scrape-motion-values.mjs';
import { createHtmlRenderState } from './utils/create-render-state.mjs';
const htmlMotionConfig = {
useVisualState: makeUseVisualState({
scrapeMotionValuesFromProps,
createRenderState: createHtmlRenderState,
}),
};
export { htmlMotionConfig };