MingruiZhang's picture
feat: Chat selector in Header (#59)
009c95b unverified
raw
history blame
No virus
338 Bytes
import { IconLoading } from '@/components/ui/Icons';
import { cn } from '@/lib/utils';
export default function Loading({ className }: { className?: String }) {
return (
<div
className={cn(
'flex justify-center items-center size-full text-sm',
className,
)}
>
<IconLoading />
</div>
);
}