Flex
The flex is a layout component to align elements on the screen.
Import
Importimport { Flex } from '@backyard-ui/core';
Usage
UsageAlignItems
AlignItemsUse the alignItems
prop to align items vertically.
Direction
DirectionUse the direction
prop to change items direction.
Justify
JustifyUse the justify
prop to align items horizontally.
Wrap
WrapUse the wrap
prop to set whether flex items are forced onto one line or can wrap onto multiple lines..
API Reference
API Reference- asChildDescription Change the component to the HTML tag or custom component of the only childType
boolean
- alignDescription The CSS `align-items` propertyType
ResponsiveValue<"center" | "baseline" | "flex-start" | "flex-end" | "stretch">
- directionDescription The CSS `flex-direction` propertyType
ResponsiveValue<"row" | "row-reverse" | "column" | "column-reverse">
Defaultrow - wrapDescription The CSS `flex-wrap` propertyType
"wrap" | "wrap-reverse" | "nowrap"
- justifyDescription The CSS `justify-content` propertyType
ResponsiveValue<"center" | "baseline" | "normal" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | "space-evenly">
- flexDescription The CSS `flex` propertyType
Flex<string | number>
- basisDescription The CSS `flex-basis` propertyType
FlexBasis<string | number>
- growDescription The CSS `flex-grow` propertyType
FlexGrow
- shrinkDescription The CSS `flex-shrink` propertyType
FlexShrink