UNPKG

@sky-mavis/tanto-widget

Version:
9 lines (8 loc) 357 B
import type { MotionNodeAnimationOptions } from 'motion/react'; import type { ReactNode } from 'react'; type FadeProps = MotionNodeAnimationOptions & { children: ReactNode; show: boolean; }; export declare function Fade({ children, initial, animate, exit, transition, show }: FadeProps): import("@emotion/react/jsx-runtime").JSX.Element; export {};