/ components / spinner.jsx
spinner.jsx
1 // Based on: https://github.com/vercel/ai/blob/main/examples/next-ai-rsc/components/llm-stocks/spinner.tsx 2 3 export const Spinner = () => ( 4 <svg 5 fill="none" 6 stroke="currentColor" 7 strokeWidth="1.5" 8 viewBox="0 0 24 24" 9 strokeLinecap="round" 10 strokeLinejoin="round" 11 xmlns="http://www.w3.org/2000/svg" 12 className="h-5 w-5 animate-spin stroke-zinc-400" 13 > 14 <path d="M12 3v3m6.366-.366-2.12 2.12M21 12h-3m.366 6.366-2.12-2.12M12 21v-3m-6.366.366 2.12-2.12M3 12h3m-.366-6.366 2.12 2.12"></path> 15 </svg> 16 );