Scramble Button

A scramble text button that cycles random glyphs on hover for developer and tech landings.

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

Import & use
import { Button19 } from "@/components/beste/component/button19";

// Renders a <Link> when href is set, otherwise a <button> using onClick.
<Button19 label="Decrypt access" href="/signup" />

<Button19
  label="Run diagnostics"
  tone="dark"   // "outline" (default) | "dark" | "primary"
  onClick={() => console.log("run diagnostics")}
/>