A column-first grid primitive for compact inline dashboards.
LazyHGrid keeps auto-flow column-oriented by default and is useful for dense
row-like grouping in horizontal streams.
Use column flow with responsive min-width tracks.
<LazyHGrid alignItems="start" gap="0.75rem" min="8rem">
<GridItem><Card><CardContent>Item 1</CardContent></Card></GridItem>
<GridItem><Card><CardContent>Item 2</CardContent></Card></GridItem>
<GridItem><Card><CardContent>Item 3</CardContent></Card></GridItem>
</LazyHGrid>import { GridItem, LazyHGrid } from "@froggdesign/enter-ui-react";LazyHGrid is layout-only. Keep semantic structure in child content and avoid using layout containers as accessibility cues.
Grid props.autoFlow to "column".min and gap.Uses .eui-grid plus --eui-grid-auto-flow: column defaults through inline
CSS variables so it remains SSR-safe.