@sky-mavis/tanto-widget
Version:
Tanto Widget
9 lines (8 loc) • 357 B
TypeScript
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 {};