Flex
Last updated: 2.0.0 (21/01/2024)
Usage
import { Flex } from "@valence-ui/core";
function MyComponent() {
return (
<Flex
direction="row"
align="center"
justify="center"
alignSelf="flex-start"
gap={5}
grow
width={200}
height={200}
padding={20}
margin={10}
>
// Flex children...
</Flex>
)
}Props
Property
Type
Description
Last updated