@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
11 lines (10 loc) • 548 B
TypeScript
import { MotionTransitionProps } from "./index.types.js";
import { Transition } from "motion/react";
//#region src/components/motion/transition.d.ts
declare const createTransition: {
enter: (transition?: Transition) => (delay?: MotionTransitionProps["delay"], duration?: MotionTransitionProps["duration"]) => Transition;
exit: (transition?: Transition) => (delay?: MotionTransitionProps["delay"], duration?: MotionTransitionProps["duration"]) => Transition;
};
//#endregion
export { createTransition };
//# sourceMappingURL=transition.d.ts.map