<>
<Flex justify="around" margin="large">
<Text css={{ backgroundColor: 'lightgray' }} text="Justify around" />
<Text css={{ backgroundColor: 'gray' }} text="Justify around" />
</Flex>
<Flex justify="between" margin="large">
<Text css={{ backgroundColor: 'lightgray' }} text="Justify between" />
<Text css={{ backgroundColor: 'gray' }} text="Justify between" />
</Flex>
<Flex justify="center" margin="large">
<Text css={{ backgroundColor: 'lightgray' }} text="Justify center" />
<Text css={{ backgroundColor: 'gray' }} text="Justify center" />
</Flex>
<Flex justify="end" margin="large">
<Text css={{ backgroundColor: 'lightgray' }} text="Justify end" />
<Text css={{ backgroundColor: 'gray' }} text="Justify end" />
</Flex>
<Flex justify="start" margin="large">
<Text css={{ backgroundColor: 'lightgray' }} text="Justify start" />
<Text css={{ backgroundColor: 'gray' }} text="Justify start" />
</Flex>
</>
Rendered outputJustify aroundJustify around
Justify betweenJustify between
Justify centerJustify center
Justify endJustify end
Justify startJustify start
<>
<Flex direction="column">
<Text text="Direction column" css={{ backgroundColor: 'lightgray' }} />
<Text text="Direction column" css={{ backgroundColor: 'orange' }}/>
</Flex>
<Flex direction="row">
<Text text="Direction row" css={{ backgroundColor: 'lightgray' }} />
<Text text="Direction row" css={{ backgroundColor: 'orange' }}/>
</Flex>
</>
Rendered outputDirection columnDirection column
Direction rowDirection row