@sky-mavis/tanto-widget
Version:
Tanto Widget
9 lines (8 loc) • 324 B
TypeScript
import { AnimationProps } from 'motion/react';
import { ReactNode } from 'react';
type FadeProps = AnimationProps & {
children: ReactNode;
show: boolean;
};
export declare const Fade: ({ children, initial, animate, exit, transition, show }: FadeProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export {};