/** Pending indicator for form submit buttons. Decorative — the button label * already says "SENDING…", so a screen reader gets the state from the text. */ export function Spinner({ className = "" }: { className?: string }) { return ( ); }