UNPKG

@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.07 kB
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 { SlideStyle } from "./slide.style.js"; import "../../index.js"; import * as react2668 from "react"; import { Variants } from "motion/react"; //#region src/components/slide/slide.d.ts declare const slideVariants: Variants; interface SlideProps extends WithTransitionProps<HTMLMotionProps$1>, ThemeProps<SlideStyle> {} declare const SlidePropsContext: react2668.Context<Partial<SlideProps> | undefined>, useSlidePropsContext: () => Partial<SlideProps> | undefined; /** * `Slide` is a component that shows or hides an element from the corners of the page. * * @see https://yamada-ui.com/docs/components/slide */ declare const Slide: Component<"div", SlideProps>; //#endregion export { Slide, SlideProps, SlidePropsContext, slideVariants, useSlidePropsContext }; //# sourceMappingURL=slide.d.ts.map