/** * HelpButton - A scholar's reference mark for keyboard shortcuts. * * Design: "Marginalia" - Like a faded notation in an old manuscript * that reveals itself when the reader's attention draws near. * * Uses Old Gold (secondary) to distinguish from primary actions, * evoking warm candlelight on aged paper. */ import { cn } from "../lib/utils"; import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, } from "./ui/tooltip"; export interface HelpButtonProps { /** Additional CSS classes */ className?: string; /** Callback when button clicked */ onClick: () => void; } export function HelpButton({ className, onClick }: HelpButtonProps) { return (

Shortcuts ?

); }