stampstack
stampstackv0.2.0

stampstack is a postage-styled coverflow component. install and drop in whatever content you want on the stamps. no deps beyond react 18

Meridian
Aurora
Tidewater
Lumen
Verdant
Cinder
Halcyon
Zephyr
$ npm i stampstack
Star on GitHubView docsFollow
import { StampStack } from 'stampstack'
import 'stampstack/styles.css'

const items = [
  { id: 'a', title: 'First' },
  { id: 'b', title: 'Second' },
]

<StampStack
  items={items}
  onSelect={(item) => console.log('open', item.id)}
  renderStamp={(item, state) => (
    <div style={{ opacity: state.focused ? 1 : 0.8 }}>{item.title}</div>
  )}
/>