Components
Loading preview...
A ticket-style button with rounded corner cut-outs punched into each corner, like a torn cinema pass, with a quick press-scale tactile effect. Theme-aware via primary and background tokens.
@radiumcoders
npx shadcn@latest add https://21st.dev/r/radiumcoders/movie-pass"use client";
import MoviePassButton from "@/components/ui/movie-pass";
export default function Default() {
return (
<div className="flex min-h-screen w-full items-center justify-center bg-background p-12">
<MoviePassButton>Deploy Doom</MoviePassButton>
</div>
);
}