improve cert status style

This commit is contained in:
miloschwartz
2026-04-26 11:27:53 -07:00
parent 32d8bde96d
commit e2e0936f43
2 changed files with 9 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
"use client";
import { Button } from "@/components/ui/button";
import { RotateCw } from "lucide-react";
import { Loader2, RotateCw } from "lucide-react";
import { useCertificate } from "@app/hooks/useCertificate";
import { useTranslations } from "next-intl";
@@ -78,7 +78,11 @@ export default function CertificateStatus({
{t("certificateStatus")}:
</span>
)}
<span className="text-sm text-muted-foreground">
<span className="inline-flex items-center gap-1.5 text-sm text-muted-foreground">
<Loader2
className="h-3.5 w-3.5 shrink-0 animate-spin"
aria-hidden
/>
{t("loading")}
</span>
</div>