SPB Git forge

spb/uqo-chat

Public
14commits 1branches 0releases
1.4 MBsize
maindefault branch
17 days agolast push
Python 64.6% TypeScript 33.7% CSS 0.8%
275 B · 7 lines tsx
Raw Blame History
1import { Loader2 } from 'lucide-react';2import { cn } from '@/lib/cn';34export const Spinner = ({ className, size = 18 }: { className?: string; size?: number }) => (5  <Loader2 size={size} className={cn('animate-spin text-uqo-blue', className)} aria-label="Chargement" />6);7