Components
Loading preview...
A playful 3D-style button with push-down animation effect.
npx shadcn@latest add https://21st.dev/r/tom_ui/pop-buttonimport { PopButton } from "@/components/ui/pop-button"
export default function Demo() {
return (
<div className="flex items-center justify-center min-h-[400px] gap-4 p-8">
<PopButton>Subscribe</PopButton>
</div>
)
}