deposite reject

This commit is contained in:
YasinShaikh123
2024-08-07 20:19:15 +05:30
parent 2b4896fa9b
commit 4c6df2cc2f
6 changed files with 591 additions and 363 deletions

View File

@@ -1,7 +1,7 @@
import { Box, Spinner, Text } from "@chakra-ui/react";
import React from "react";
const FullscreenLoaders = () => {
const FullscreenLoaders = ({height}) => {
return (
<Box
display={"flex"}
@@ -9,7 +9,7 @@ const FullscreenLoaders = () => {
flexDirection={'column'}
alignItems={"center"}
w={"100%"}
h={"100vh"}
h={height ? height: "100vh"}
gap={4}
><Spinner
thickness='3px'