Stack
Generic flex stack — vertical or horizontal — with bounded gap, cross-axis alignment, and main-axis justification. Horizontal stacks always wrap so they never force overflow.
LayoutUsage
import { Stack } from "@zudo-sg/ui/src/shared/stack/stack";
<Stack gap="md">
<div>First</div>
<div>Second</div>
</Stack>Default (vertical, gap=md)
Horizontal (wraps instead of overflowing)
Narrow (horizontal wraps without overflow)