You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import { Loader2 } from 'lucide-react';
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="flex h-full flex-col items-center justify-center">
|
|
<Loader2 className="h-12 w-12 animate-spin text-slate-700 dark:text-rose-50" />
|
|
</div>
|
|
);
|
|
}
|
|
|