blakeblackshear.frigate/web/src/components/indicators/activity-indicator.tsx
Nicolas Mowen 433da8ffce
Update web deps (#16983)
* Update vite

* Update LuIcons

* Update radix packages

* Fix other icons

* Use correct node version

* Remove superfluous web build on python tests

* Move web build to test
2025-03-06 10:50:37 -06:00

14 lines
391 B
TypeScript

import { cn } from "@/lib/utils";
import { AiOutlineLoading3Quarters } from "react-icons/ai";
export default function ActivityIndicator({ className = "w-full", size = 30 }) {
return (
<div
className={cn("flex items-center justify-center", className)}
aria-label="Loading…"
>
<AiOutlineLoading3Quarters className="animate-spin" size={size} />
</div>
);
}