Skip to content

SimpleGrid

Uniform-column grid driven by columns (a number or breakpoint map) and gap. The 90% path that doesn't need Grid's full template surface.

  • stable
  • since v0.1.0
  • 3.61 kB
  • primitive
  • layout
  • grid

Plain <div> — identical semantics to Grid. Pair items with semantic children (cards, list items) when they represent content.

Preview
Open
tsx

Pass a breakpoint map to columns so the grid reflows naturally — the most common pattern is a 1-column phone layout that climbs to 4 columns on the widest viewports.

Preview
Open
tsx

When the column count should be driven by space rather than by you, pass minChildWidth and let the grid pick the column count automatically. New columns appear whenever the container can fit another minChildWidth-wide track.

Preview
Open
tsx
PropTypeDefaultDescription
className
string
Additional class names appended after Cynosure's base classes.
style
CSSProperties
Inline style overrides merged last.
children
ReactNode
Grid children.
columns
Responsive<number>
Fixed column count — emits `repeat(N, minmax(0, 1fr))`. Ignored when `minChildWidth` is set.
minChildWidth
Minimum width each child should occupy before a new column is added. Emits `repeat(auto-fit, minmax(<minChildWidth>, 1fr))` for a fluid grid that reflows without breakpoints. Wins over `columns`.
gap
Uniform gap in both axes.
columnGap
Gap between columns. Overrides the column axis of `gap`.
rowGap
Gap between rows. Overrides the row axis of `gap`.
padding
Padding on all four sides. Token from the spacing scale.
paddingX
Horizontal padding (left + right). Overrides `padding` on the X axis.
paddingY
Vertical padding (top + bottom). Overrides `padding` on the Y axis.
paddingTop
Padding on the top edge. Beats `padding` / `paddingY`.
paddingRight
Padding on the right (inline-end in RTL) edge.
paddingBottom
Padding on the bottom edge.
paddingLeft
Padding on the left (inline-start in RTL) edge.
margin
Margin on all four sides. Accepts the spacing scale or `"auto"`.
marginX
Horizontal margin (left + right). Use `"auto"` to centre.
marginY
Vertical margin (top + bottom).
marginTop
Margin on the top edge.
marginRight
Margin on the right edge.
marginBottom
Margin on the bottom edge.
marginLeft
Margin on the left edge.
width
Element width. Accepts a `SpaceToken`, `LengthValue`, or named alias.
height
Element height. Accepts a `SpaceToken`, `LengthValue`, or named alias.
minWidth
Minimum width — useful for preventing flex children from collapsing.
maxWidth
Maximum width — `"prose"` caps to a comfortable reading measure.
minHeight
Minimum height.
maxHeight
Maximum height.
background
Background colour. Use a `ColorToken` like `"bg.surface"` for theme awareness.
color
Text colour. Inherits unless set.
borderColor
Border colour. Pair with `borderWidth` to make the border visible.
borderWidth
Border thickness in scale steps.
borderStyle
Border line style.
borderRadius
Corner rounding token.
boxShadow
Drop-shadow token from the elevation scale.
opacity
Responsive<number | `${number}`>
Opacity 0–1. Use sparingly — prefer surface tokens over translucency.
overflow
How content that exceeds the box is handled.
overflowX
Horizontal-axis overflow control. Overrides `overflow` for the X axis.
overflowY
Vertical-axis overflow control.
display
CSS `display` value. `"contents"` removes the element's box from layout.
position
CSS `position`. Pair with `top`/`right`/`bottom`/`left` for placement.
top
Top inset (when positioned). Accepts a `SpaceToken`, `"auto"`, `"0"`, or `LengthValue`.
right
Right inset (when positioned).
bottom
Bottom inset (when positioned).
left
Left inset (when positioned).
zIndex
Stacking-context layer token (`"modal"`, `"tooltip"`, …).
gridColumn
Responsive<string>
Grid-column shorthand (e.g. `"1 / 3"`, `"span 2"`).
gridRow
Responsive<string>
Grid-row shorthand.
gridArea
Responsive<string>
Named grid area.
flex
Responsive<"1" | "none" | "auto" | "initial" | (string & {})>
Shorthand: `1 | auto | none | initial | <css>`. Resolves to `flex` on the child.
flexGrow
Responsive<number | `${number}`>
Grow factor inside a flex container.
flexShrink
Responsive<number | `${number}`>
Shrink factor inside a flex container.
flexBasis
Responsive<SizeValue | "content">
Initial main-axis size before grow/shrink.
alignSelf
Override `align-items` for a single child.
justifySelf
Override `justify-items` for a single child (grid).
order
Responsive<number | `${number}`>
Flex/grid child reorder index.
asChild
boolean
When `true`, renders the primitive's single React child via `Slot`, forwarding className/style/ref/event handlers onto it.
as
ElementType
"div"
Rendered intrinsic element or component.
ref
ForwardedRef<Element>
  • Card grids: <SimpleGrid columns={{ base: 1, sm: 2, lg: 3 }} gap="4" /> covers most product / blog / team layouts.
  • Auto-flow gallery: <SimpleGrid minChildWidth="200px" gap="3" /> adapts to any container width without a media-query map.
  • For non-uniform columns or named areas, reach for Grid instead.