mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 13:34:13 +03:00
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>
|
||
|
|
);
|
||
|
|
}
|