UNPKG

@chakra-ui/react

Version:

Responsive and accessible React UI components built with React and Emotion

11 lines (10 loc) 372 B
import { type HTMLChakraProps } from "../../styled-system"; export interface BoxProps extends HTMLChakraProps<"div"> { } /** * Box is the most abstract component on top of which other chakra * components are built. It renders a `div` element by default. * * @see Docs https://chakra-ui.com/box */ export declare const Box: import("../..").ChakraComponent<"div", {}>;