UNPKG

@yamada-ui/react

Version:

React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion

20 lines (19 loc) 939 B
import { ThemeProps, WithoutThemeProps } from "../../core/system/index.types.js"; import { Component } from "../../core/components/index.types.js"; import "../../core/index.js"; import { FlexProps } from "../flex/flex.js"; import { WrapStyle } from "./wrap.style.js"; import "../../index.js"; import * as react2596 from "react"; //#region src/components/wrap/wrap.d.ts interface WrapProps extends WithoutThemeProps<FlexProps, WrapStyle>, ThemeProps<WrapStyle> {} declare const WrapPropsContext: react2596.Context<Partial<WrapProps> | undefined>, useWrapPropsContext: () => Partial<WrapProps> | undefined; /** * `Wrap` is a component that has `wrap` set on `Flex`. It inherits convenient style shorthand from `Flex`. * * @see https://yamada-ui.com/docs/components/wrap */ declare const Wrap: Component<"div", WrapProps>; //#endregion export { Wrap, WrapProps, WrapPropsContext, useWrapPropsContext }; //# sourceMappingURL=wrap.d.ts.map