Update camera activity indicator (#10208)

* new indicator

* create indicators directory and update imports

* create indicators directory and update imports

* remove vite
This commit is contained in:
Josh Hawkins
2024-03-03 10:32:47 -06:00
committed by GitHub
parent 312dc95156
commit c74eb75554
17 changed files with 85 additions and 39 deletions

View File

@@ -1,12 +0,0 @@
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>
);
}