mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-07-12 13:47:14 +02:00
* new indicator * create indicators directory and update imports * create indicators directory and update imports * remove vite
13 lines
293 B
TypeScript
13 lines
293 B
TypeScript
import { LuLoader2 } from "react-icons/lu";
|
|
|
|
export default function ActivityIndicator({ size = 30 }) {
|
|
return (
|
|
<div
|
|
className="w-full flex items-center justify-center"
|
|
aria-label="Loading…"
|
|
>
|
|
<LuLoader2 className="animate-spin" size={size} />
|
|
</div>
|
|
);
|
|
}
|