UNPKG

452 BTypeScriptView Raw
1import { type HTMLChakraProps } from "../../styled-system";
2export interface CenterProps extends HTMLChakraProps<"div"> {
3}
4/**
5 * React component used to horizontally and vertically center its child.
6 * It uses the popular `display: flex` centering technique.
7 *
8 * @see Docs https://chakra-ui.com/center
9 */
10export declare const Center: import("../..").ChakraComponent<"div", {
11 inline?: import("../..").ConditionalValue<boolean | undefined>;
12}>;