database-petani-mobile/node_modules/framer-motion/dist/es/easing/ease.mjs
2026-02-23 16:39:35 +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 };