Flex

Component for flexbox

Usage

1import { Flex } from "@raystack/apsara";

Flex Props

Prop

Type

Examples

Basic Usage

1<Flex gap="large">
2 <Flex gap="medium" direction="column">
3 <Button>Primary button</Button>
4 <Button>Primary button</Button>
5 <Button>Primary button</Button>
6 </Flex>
7 <Flex gap="medium" direction="column">
8 <Button>Primary button</Button>
9 <Button>Primary button</Button>
10 <Button>Primary button</Button>
11 </Flex>
12</Flex>