import { clsx } from 'clsx/lite'; const SIZE_DEFAULT = 12; export type SpinnerColor = 'text' | 'dim' | 'light-gray'; export default function Spinner({ size = SIZE_DEFAULT, color = 'light-gray', className, }: { size?: number color?: SpinnerColor className?: string }) { return ( ); }