Added a loading overlay and loading spinner.

This commit is contained in:
Lucid Kobold
2022-04-09 17:10:09 -05:00
parent 8803940b19
commit 6b670a92ba
2 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { Spinner } from "@chakra-ui/react";
import React from "react";
const LoadingSpinner = (): JSX.Element => {
return (
<Spinner
thickness="4px"
speed="0.50s"
emptyColor="loading.spinnerEmptySpace"
color="loading.spinnerColor"
size="xl"
/>
);
};
export default LoadingSpinner;