UNPKG

@yamada-ui/react

Version:

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

19 lines (18 loc) 888 B
import { ThemeProps } from "../../core/system/index.types.js"; import { Component, HTMLStyledProps } from "../../core/components/index.types.js"; import "../../core/index.js"; import { CenterStyle } from "./center.style.js"; import "../../index.js"; import * as react924 from "react"; //#region src/components/center/center.d.ts interface CenterProps extends HTMLStyledProps, ThemeProps<CenterStyle> {} declare const CenterPropsContext: react924.Context<Partial<CenterProps> | undefined>, useCenterPropsContext: () => Partial<CenterProps> | undefined; /** * `Center` is a component that aligns the child elements in the center within the component. * * @see https://yamada-ui.com/docs/components/center */ declare const Center: Component<"div", CenterProps>; //#endregion export { Center, CenterProps, CenterPropsContext, useCenterPropsContext }; //# sourceMappingURL=center.d.ts.map