Spaces:
Sleeping
Sleeping
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> | |
); | |
} | |