import { JSX } from 'react'; interface ISpinnerProps { color?: 'text-primary' | 'text-light'; size?: 'sm' | 'md'; className?: string; } export function Spinner({ color = 'text-primary', size = 'sm', className, }: ISpinnerProps): JSX.Element { return ( Loading... ); }