import { cn } from '@/lib/utils'; import { forwardRef } from 'react'; const Button = forwardRef< HTMLButtonElement, React.ButtonHTMLAttributes & { kind?: 'default' | 'danger' | 'brand'; } >(({ kind = 'default', className, ...props }, ref) => (