A NeoBrutalism style button with thick borders, high-contrast colors, and a sharp offset shadow that snaps away on press. Fully theme-aware with overridable color, border, shadow, and radius props.
"use client"; import { BrutalButton } from "@/components/ui/brutal-button"; export default function Default() { return ( <div className="flex min-h-screen w-full items-center justify-center bg-background p-12"> <BrutalButton>Deploy Doom</BrutalButton> </div> ); }