feat: add spinner, lowercase version

This commit is contained in:
Austin Pickett 2026-04-28 13:59:33 -04:00
parent 912590a143
commit 47d4b6e31a
16 changed files with 292 additions and 131 deletions

View file

@ -1,5 +1,5 @@
import { useSyncExternalStore } from "react";
import { Loader2 } from "lucide-react";
import { Spinner } from "@nous-research/ui";
import {
getPluginComponent,
getPluginLoadError,
@ -51,7 +51,7 @@ export function PluginPage({ name }: { name: string }) {
"font-mondwest text-sm tracking-[0.1em] text-midground/60",
)}
>
<Loader2 className="h-4 w-4 shrink-0 animate-spin" aria-hidden />
<Spinner className="shrink-0" />
<span>{t.common.loading}</span>
</div>
);