Pressable Button

A neobrutalist button with a hard offset shadow that lifts on hover and presses in on click.

Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.

Import & use
import { Button11 } from "@/components/beste/component/button11";
import { Zap } from "lucide-react";

// Renders a <Link> when href is set, otherwise a <button> using onClick.
<Button11 label="Press me" onClick={() => console.log("pressed")} />

<Button11
  label="Get started"
  href="/signup"
  icon={Zap}       // optional leading icon
  tone="primary"   // "neutral" (default) | "primary"
/>