import { cn } from '@/lib/utils'; interface SpinnerProps { className?: string; size?: number; color?: string; } export function Spinner({ className, size = 48, color }: SpinnerProps) { const r = 18; // radius const circumference = 2 * Math.PI * r; const arcLength = circumference * 0.7; // 70% arc return ( ); }