File size: 211 Bytes
abb7588
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { IconLoading } from '@/components/ui/Icons';

export default async function Loading() {
	return (
		<div className="flex justify-center items-center size-full text-sm">
			<IconLoading />
		</div>
	);
}