import { Loader2 } from 'lucide-react' import { cn } from '../lib/utils' /* * HackeryButton — the onboarding "Begin" CTA, ported standalone. * * Bracketed [ LABEL ], mono/uppercase, primary accent on a --stroke-nous hairline. * Lifted from apps/desktop's desktop-onboarding-overlay.tsx (sans the exit-scramble * choreography, which is overlay-specific). Self-contained: cn + lucide only. */ export function HackeryButton({ className, label, loading, ...props }: Omit, 'children'> & { label: React.ReactNode; loading?: boolean }) { return ( ) }