Components
Starting preview...
Retro 3D buttons by https://x.com/njesenberger
npx shadcn@latest add https://21st.dev/r/serafimcloud/retro-buttonimport { RetroButton } from "@/components/ui/retro-button"
function RetroButtonDemo() {
return (
<div className="min-h-screen flex items-center justify-center">
<div className="flex flex-wrap justify-center items-center max-w-[26em] gap-4">
<RetroButton>Record</RetroButton>
<RetroButton variant="darkGray">Sound</RetroButton>
<RetroButton variant="white">Erase</RetroButton>
<RetroButton variant="lightGray">Shift</RetroButton>
<RetroButton variant="gray">Play</RetroButton>
</div>
</div>
)
}
export default { RetroButtonDemo };