@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
22 lines (21 loc) • 1.03 kB
TypeScript
import { ThemeProps } from "../../core/system/index.types.js";
import { Component } from "../../core/components/index.types.js";
import "../../core/index.js";
import { HTMLMotionProps as HTMLMotionProps$1, WithTransitionProps } from "../motion/index.types.js";
import { FadeStyle } from "./fade.style.js";
import "../../index.js";
import * as react885 from "react";
import { Variants } from "motion/react";
//#region src/components/fade/fade.d.ts
declare const fadeVariants: Variants;
interface FadeProps extends WithTransitionProps<HTMLMotionProps$1>, ThemeProps<FadeStyle> {}
declare const FadePropsContext: react885.Context<Partial<FadeProps> | undefined>, useFadePropsContext: () => Partial<FadeProps> | undefined;
/**
* `Fade` is a component that gradually shows or hides an element.
*
* @see https://yamada-ui.com/docs/components/fade
*/
declare const Fade: Component<"div", FadeProps>;
//#endregion
export { Fade, FadeProps, FadePropsContext, fadeVariants, useFadePropsContext };
//# sourceMappingURL=fade.d.ts.map