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) 958 B
import { ThemeProps, WithoutThemeProps } from "../../core/system/index.types.js"; import { Component } from "../../core/components/index.types.js"; import "../../core/index.js"; import { HStackStyle } from "./h-stack.style.js"; import { StackProps } from "./stack.js"; import "../../index.js"; import * as react2661 from "react"; //#region src/components/stack/h-stack.d.ts interface HStackProps extends WithoutThemeProps<StackProps, HStackStyle>, ThemeProps<HStackStyle> {} declare const HStackPropsContext: react2661.Context<Partial<HStackProps> | undefined>, useHStackPropsContext: () => Partial<HStackProps> | undefined; /** * `HStack` is a component that groups elements and provides space between child elements. * * @see https://yamada-ui.com/docs/components/stack */ declare const HStack: Component<"div", HStackProps>; //#endregion export { HStack, HStackProps, HStackPropsContext, useHStackPropsContext }; //# sourceMappingURL=h-stack.d.ts.map