mirror of
https://github.com/fosrl/pangolin.git
synced 2026-07-08 23:24:54 +02:00
10 lines
264 B
TypeScript
10 lines
264 B
TypeScript
import { Loader2 } from "lucide-react";
|
|
|
|
export default function OrgPageLoading() {
|
|
return (
|
|
<div className="flex items-center justify-center py-16">
|
|
<Loader2 className="size-6 animate-spin text-muted-foreground" />
|
|
</div>
|
|
);
|
|
}
|