File size: 287 Bytes
37f231b
 
 
 
 
1
2
3
4
5
6
// website/src/components/Spinner.jsx
export default function Spinner({ size = 'sm' }) {
  const cls = size === 'sm' ? 'h-3 w-3 border' : 'h-5 w-5 border-2';
  return <span className={`inline-block rounded-full border-ink/20 border-t-ink animate-spin ${cls}`} aria-label="Loading" />;
}