Stack
One-dimensional spacing: a row or a column with a gap, alignment, and justification in props.
Row and column
<Stack direction="row" gap="md">
<Button size="sm">Save</Button>
<Button size="sm" variant="secondary">Cancel</Button>
</Stack>Column
Props
| Prop | Type | Default | Description |
|---|---|---|---|
direction | row | column | column | Main axis. |
gap | sm | md | lg | md | Spacing. |
align / justify | start | center | end | stretch / + between | stretch / start | Cross/main alignment. |
wrap | boolean | false | Allow wrapping. |
Accessibility
- DOM order stays the visual order; no
orderoverrides.