import type { CSSProperties } from "react"; export function Spinner({ size = 14, tone = "accent", label = "Loading", className = "", style, }: { size?: number; tone?: "accent" | "paper" | "muted"; label?: string; className?: string; style?: CSSProperties; }) { return ( ); }