mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-10-08 11:16:42 +02:00
* 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
14 lines
391 B
TypeScript
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>
|
|
);
|
|
}
|