Box
Boxは、他のすべてのコンポーネントがその上に構築される最も抽象的なコンポーネントです。デフォルトでは、div要素をレンダリングします。
This is the Box
<Box p="md" bg="bg.contrast" color="fg.contrast">
This is the Box
</Box>
使い方
import { Box } from "@yamada-ui/react"
import { Box } from "@/components/ui"
import { Box } from "@workspaces/ui"
<Box />
異なる要素としてレンダリングする
asを渡すことで、異なる要素としてレンダリングすることができます。
<Box as="section" p="md" bg="bg.contrast" color="fg.contrast">
This is the section
</Box>