Files
lcbp3.np-dms.work/frontend/node_modules/framer-motion/dist/es/easing/ease.mjs
2025-09-21 20:29:15 +07:00

8 lines
269 B
JavaScript

import { cubicBezier } from './cubic-bezier.mjs';
const easeIn = /*@__PURE__*/ cubicBezier(0.42, 0, 1, 1);
const easeOut = /*@__PURE__*/ cubicBezier(0, 0, 0.58, 1);
const easeInOut = /*@__PURE__*/ cubicBezier(0.42, 0, 0.58, 1);
export { easeIn, easeInOut, easeOut };