UNPKG

@chakra-ui/react

Version:

Responsive and accessible React UI components built with React and Emotion

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