The Box
component is a layout primitive that can be used to create any kind of layout.
It is just a div
with some styles.
// Before <Box bg={"red"} /> // After <div className="d0" />
You can use the as
prop to change the element type.
// Before <Box as={"span"} /> // After <span className="d0" />