mirror of
https://github.com/WDI-Ideas/rubix.git
synced 2026-04-29 06:55:49 +00:00
Blogs api/ Community Banner api/ New api integration
This commit is contained in:
24
src/components/Loader/Loader.jsx
Normal file
24
src/components/Loader/Loader.jsx
Normal file
@@ -0,0 +1,24 @@
|
||||
import { Box, Spinner } from "@chakra-ui/react";
|
||||
|
||||
const Loader = () => {
|
||||
return (
|
||||
<>
|
||||
<Box
|
||||
height={"100vh"}
|
||||
background={"#101015"}
|
||||
display={"grid"}
|
||||
placeContent={"center"}
|
||||
>
|
||||
<Spinner
|
||||
thickness="4px"
|
||||
speed="0.65s"
|
||||
emptyColor="gray.200"
|
||||
color="#DE858E"
|
||||
size="xl"
|
||||
/>
|
||||
</Box>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Loader;
|
||||
Reference in New Issue
Block a user