On this page
Flex
- Deprecated
- Not reviewed for accessibility
On this page
The Flex
component behaves the same as the Box
component except that it has display: flex
set by default.
Deprecation
Use Box instead.
Before
<Flex flexWrap="nowrap"><Box p={3} color="fg.onEmphasis" bg="accent.emphasis">Item 1</Box></Flex>
After
<Box display="flex" flexWrap="nowrap"><Box p={3} color="fg.onEmphasis" bg="accent.emphasis">Item 1</Box></Box>
Default example
System props
Flex components get FLEX
, COMMON
, and LAYOUT
system props.
Read our System Props doc page for a full list of available props.
Component props
Flex
does not get any additional props other than the system props mentioned above.