File size: 338 Bytes
abb7588
009c95b
abb7588
009c95b
f80b091
009c95b
 
 
 
 
 
f80b091
 
 
abb7588
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>
  );
}