--- title: Flex description: "`Flex` is a component that sets `flex` to `Box`. Also, convenient style shorthand is available." links: - style: https://github.com/yamada-ui/yamada-ui/tree/main/packages/react/src/components/flex/flex.style.ts - source: https://github.com/yamada-ui/yamada-ui/tree/main/packages/react/src/components/flex - storybook: https://yamada-ui.github.io/yamada-ui?path=/story/components-flex--basic --- ```tsx {Array.from({ length: 4 }).map((_, index) => ( Box ))} ``` ## Usage ```tsx import { Flex } from "@yamada-ui/react" ``` ```tsx import { Flex } from "@/components/ui" ``` ```tsx import { Flex } from "@workspaces/ui" ``` ```tsx ``` ### Direction ```tsx {Array.from({ length: 4 }).map((_, index) => ( Box ))} ``` ### Align ```tsx {(p, index) => ( Box )} ``` ### Justify ```tsx {Array.from({ length: 4 }).map((_, index) => ( Box ))} ``` ### Wrap ```tsx {Array.from({ length: 4 }).map((_, index) => ( Box ))} ``` ### Use spaces ```tsx Box Box ``` ## Props ### Flex | Prop | Default | Type | Description | | ------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------ | | `as` | - | `As` | The HTML element to render. | | `asChild` | - | `boolean` | Merges its props onto its immediate child. | | `css` | - | `CSSObject \| CSSObject[]` | The CSS object. | | `colorScheme` | - | `"amber" \| "black" \| "blackAlpha" \| "blue" \| "cyan" \| "danger" \| "emerald" \| "error" \| "flashy" \| "fuchsia" ...` | Set color scheme variables. | | `align` | - | `"-moz-initial" \| "baseline" \| "center" \| "end" \| "flex-end" \| "flex-start" \| "inherit" \| "initial" \| "normal" \| "revert-layer" ...` | The CSS `align-items` property. | | `basis` | - | `"-moz-fit-content" \| "-moz-initial" \| "-moz-max-content" \| "-moz-min-content" \| "-webkit-auto" \| "0.5" \| "1.5" \| "1" \| "1/12" \| "1/2" ...` | The CSS `flex-basis` property. | | `direction` | - | `"-moz-initial" \| "column-reverse" \| "column" \| "inherit" \| "initial" \| "revert-layer" \| "revert" \| "row-reverse" \| "row" \| "unset" ...` | The CSS `flex-direction` property. | | `grow` | - | `"-moz-initial" \| "inherit" \| "initial" \| "revert-layer" \| "revert" \| "unset" \| number & {} ...` | The CSS `flex-grow` property. | | `justify` | - | `"-moz-initial" \| "center" \| "end" \| "flex-end" \| "flex-start" \| "inherit" \| "initial" \| "left" \| "normal" \| "revert-layer" ...` | The CSS `justify-content` property. | | `shrink` | - | `"-moz-initial" \| "inherit" \| "initial" \| "revert-layer" \| "revert" \| "unset" \| number & {} ...` | The CSS `flex-shrink` property. | | `wrap` | - | `"-moz-initial" \| "inherit" \| "initial" \| "nowrap" \| "revert-layer" \| "revert" \| "unset" \| "wrap-reverse" \| "wrap" ...` | The CSS `flex-wrap` property. | ### Spacer | Prop | Default | Type | Description | | ------------- | ------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------ | | `as` | - | `As` | The HTML element to render. | | `asChild` | - | `boolean` | Merges its props onto its immediate child. | | `css` | - | `CSSObject \| CSSObject[]` | The CSS object. | | `colorScheme` | - | `"amber" \| "black" \| "blackAlpha" \| "blue" \| "cyan" \| "danger" \| "emerald" \| "error" \| "flashy" \| "fuchsia" ...` | Set color scheme variables. |