Box

Box is a simple div tag with styled system.

Source
pnpm dlx dreamy add box

Box is the most fundamental layout component that provides basic styling capabilities. Use it as a building block for creating custom layouts and designs.

This is a box
<Box
  bg="green.400"
  color="black"
  fontWeight={500}
  p={3}
  rounded="l2"
  w="250px"
  h="100px"
>
  This is a box
</Box>