Masonry
Pinterest-style masonry layout for displaying items with varying heights in an organized grid.
Import
Section titled “Import”import { Masonry } from 'asterui'Examples
Section titled “Examples”Dynamic Items
Add and remove items dynamically. New items are placed in the shortest column.
import { Masonry, Button } from 'asterui'
import { useState } from 'react'
function App() {
const COLORS = ['#0092ff', '#00d084', '#ff6b6b', '#ffd93d', '#a29bfe', '#fd79a8']
const HEIGHTS = [100, 120, 140, 160, 180, 200]
interface Item { id: number; color: string; height: number }
const [items, setItems] = useState<Item[]>([
{ id: 1, color: COLORS[0], height: 120 },
{ id: 2, color: COLORS[1], height: 180 },
{ id: 3, color: COLORS[2], height: 140 },
])
const [nextId, setNextId] = useState(4)
const addItem = () => {
setItems([...items, {
id: nextId,
color: COLORS[Math.floor(Math.random() * COLORS.length)],
height: HEIGHTS[Math.floor(Math.random() * HEIGHTS.length)],
}])
setNextId(nextId + 1)
}
const removeItem = (id: number) => setItems(items.filter(item => item.id !== id))
return (
<div>
<div className="mb-4">
<Button color="primary" onClick={addItem}>Add Item</Button>
</div>
<Masonry columns={3} gap={16}>
{items.map(item => (
<div
key={item.id}
className="relative rounded-lg"
style={{ background: item.color, padding: '16px', color: 'white', height: item.height }}
>
<Button
variant="ghost"
size="sm"
shape="circle"
className="absolute top-1 right-1 min-h-0 h-6 w-6 text-white hover:bg-black/20"
onClick={() => removeItem(item.id)}
>
×
</Button>
Item {item.id}
</div>
))}
</Masonry>
</div>
)
}
export default App Basic Masonry
Simple masonry grid with varying height items.
import { Masonry } from 'asterui'
function App() {
return (
<Masonry columns={3} gap={16}>
<div style={{ background: '#0092ff', padding: '16px', color: 'white', height: '120px' }}>
Item 1
</div>
<div style={{ background: '#00d084', padding: '16px', color: 'white', height: '180px' }}>
Item 2
</div>
<div style={{ background: '#ff6b6b', padding: '16px', color: 'white', height: '140px' }}>
Item 3
</div>
<div style={{ background: '#ffd93d', padding: '16px', color: 'white', height: '200px' }}>
Item 4
</div>
<div style={{ background: '#a29bfe', padding: '16px', color: 'white', height: '160px' }}>
Item 5
</div>
<div style={{ background: '#fd79a8', padding: '16px', color: 'white', height: '130px' }}>
Item 6
</div>
</Masonry>
)
}
export default App Responsive Columns
Responsive column count at different breakpoints.
import { Masonry } from 'asterui'
function App() {
return (
<Masonry columns={{ xs: 1, sm: 2, md: 3, lg: 4 }} gap={16}>
<div style={{ background: '#0092ff', padding: '16px', color: 'white', height: '120px' }}>
Item 1
</div>
<div style={{ background: '#00d084', padding: '16px', color: 'white', height: '180px' }}>
Item 2
</div>
<div style={{ background: '#ff6b6b', padding: '16px', color: 'white', height: '140px' }}>
Item 3
</div>
<div style={{ background: '#ffd93d', padding: '16px', color: 'white', height: '200px' }}>
Item 4
</div>
<div style={{ background: '#a29bfe', padding: '16px', color: 'white', height: '160px' }}>
Item 5
</div>
<div style={{ background: '#fd79a8', padding: '16px', color: 'white', height: '130px' }}>
Item 6
</div>
<div style={{ background: '#74b9ff', padding: '16px', color: 'white', height: '150px' }}>
Item 7
</div>
<div style={{ background: '#fab1a0', padding: '16px', color: 'white', height: '170px' }}>
Item 8
</div>
</Masonry>
)
}
export default App Custom Gap
Different gap sizes between items.
import { Masonry } from 'asterui'
function App() {
return (
<Masonry columns={3} gap={32}>
<div style={{ background: '#0092ff', padding: '16px', color: 'white', height: '120px' }}>
Item 1
</div>
<div style={{ background: '#00d084', padding: '16px', color: 'white', height: '180px' }}>
Item 2
</div>
<div style={{ background: '#ff6b6b', padding: '16px', color: 'white', height: '140px' }}>
Item 3
</div>
<div style={{ background: '#ffd93d', padding: '16px', color: 'white', height: '200px' }}>
Item 4
</div>
<div style={{ background: '#a29bfe', padding: '16px', color: 'white', height: '160px' }}>
Item 5
</div>
<div style={{ background: '#fd79a8', padding: '16px', color: 'white', height: '130px' }}>
Item 6
</div>
</Masonry>
)
}
export default App Masonry
Section titled “Masonry”| Property | Description | Type | Default |
|---|---|---|---|
columns | Number of columns or responsive column configuration | number | { xs?: number, sm?: number, md?: number, lg?: number, xl?: number, '2xl'?: number } | 3 |
gap | Spacing between items in pixels | number | 16 |
children | Items to display in masonry layout | React.ReactNode | - |
className | Additional CSS classes | string | - |
data-testid | Test ID for testing | string | - |
Usage Notes
Section titled “Usage Notes”- The Masonry component creates a Pinterest-style layout where items are arranged in columns
- Items flow into the shortest column to create a balanced layout
- Use the
columnsprop to set a fixed number of columns or make it responsive - The
gapprop controls spacing between items in pixels - Responsive breakpoints: xs (<640px), sm (≥640px), md (≥768px), lg (≥1024px), xl (≥1280px), 2xl (≥1536px)
- Items can have varying heights - the layout will automatically distribute them efficiently
- Great for image galleries, product grids, and content cards