File size: 398 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
"use client"
import { type HTMLChakraProps, chakra } 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/docs/components/box
*/
export const Box = chakra("div")
Box.displayName = "Box"
|