UNPKG

424 BTypeScriptView Raw
1import { type HTMLChakraProps } from "../../styled-system";
2export interface SpacerProps extends HTMLChakraProps<"div"> {
3}
4/**
5 * A flexible flex spacer that expands along the major axis of its containing flex layout.
6 * It renders a `div` by default, and takes up any available space.
7 *
8 * @see Docs https://chakra-ui.com/flex#using-the-spacer
9 */
10export declare const Spacer: import("../..").ChakraComponent<"div", {}>;