Sticker Peel Demo
loomui/sticker-peel-demoFreeExample
Three stickers whose corners lift as the pointer crosses them.
Install it
npx shadcn@latest add https://loomui.design/r/sticker-peel-demo.jsonSource
1import { StickerPeel } from "@/registry/loomui/sticker-peel"23const STICKERS = [4 { label: "Ships today", tone: "bg-accent text-accent-foreground" },5 { label: "One file", tone: "bg-card text-card-foreground border" },6 { label: "No deps", tone: "bg-primary text-primary-foreground" },7] as const89export default function StickerPeelDemo() {10 return (11 <div className="flex flex-wrap items-center justify-center gap-6">12 {STICKERS.map((sticker, index) => (13 <StickerPeel14 key={sticker.label}15 corner={index === 1 ? "top-right" : "bottom-right"}16 size="2.5rem"17 className="size-32 rounded-xl"18 >19 <div20 className={`grid h-full w-full place-items-center rounded-xl p-4 text-center text-sm font-medium ${sticker.tone}`}21 >22 {sticker.label}23 </div>24 </StickerPeel>25 ))}26 </div>27 )28}
What it pulls in
Other registry items
Files it writes
More from loomui
All 91 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Aurora Backdrop Demoaurora-backdrop-demo | loomui | Examples | Free | no deps | |
| Bento Grid Demobento-grid-demo | loomui | Examples | Free | no deps | |
| Card Stack Democard-stack-demo | loomui | Examples | Free | no deps | |
| Compare Slider Democompare-slider-demo | loomui | Examples | Free | no deps | |
| Confetti Button Democonfetti-button-demo | loomui | Examples | Free | no deps | |
| Count Up Democount-up-demo | loomui | Examples | Free | no deps | |
| Credit Card Democredit-card-demo | loomui | Examples | Free | no deps | |
| Drawer Demodrawer-demo | loomui | Examples | Free | no deps |
