UNPKG

@yamada-ui/react

Version:

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

25 lines (24 loc) 1.54 kB
import { ThemeProps } from "../../core/system/index.types.js"; import { Component, HTMLStyledProps } from "../../core/components/index.types.js"; import "../../core/index.js"; import { ContainerStyle } from "./container.style.js"; import "../../index.js"; import * as react901 from "react"; //#region src/components/container/container.d.ts interface ContainerRootProps extends HTMLStyledProps<"section">, ThemeProps<ContainerStyle> {} declare const ContainerPropsContext: react901.Context<Partial<ContainerRootProps> | undefined>, useContainerPropsContext: () => Partial<ContainerRootProps> | undefined; /** * `Container` is a component used as a general division element. By default, it renders the `section` element. * * @see https://yamada-ui.com/docs/components/container */ declare const ContainerRoot: Component<"section", ContainerRootProps>; interface ContainerHeaderProps extends HTMLStyledProps<"header"> {} declare const ContainerHeader: Component<"header", HTMLStyledProps<"header">>; interface ContainerBodyProps extends HTMLStyledProps {} declare const ContainerBody: Component<"div", HTMLStyledProps<"div">>; interface ContainerFooterProps extends HTMLStyledProps<"footer"> {} declare const ContainerFooter: Component<"footer", HTMLStyledProps<"footer">>; //#endregion export { ContainerBody, ContainerBodyProps, ContainerFooter, ContainerFooterProps, ContainerHeader, ContainerHeaderProps, ContainerPropsContext, ContainerRoot, ContainerRootProps, useContainerPropsContext }; //# sourceMappingURL=container.d.ts.map