avent-ui
Version:
The best UI library for Typescript and React
17 lines (15 loc) • 335 B
JavaScript
// export const anim = (variants: Variants): MotionProps => ({
// initial: "initial",
// animate: "enter",
// exit: "exit",
// variants,
// });
const anim = (variants, custom) => ({
initial: "initial",
animate: "enter",
exit: "exit",
variants,
custom
});
export { anim };
//# sourceMappingURL=types.js.map