Qortal-Hub/src/common/CustomLoader.tsx
2025-05-09 21:20:38 +02:00

20 lines
364 B
TypeScript

import './customloader.css';
import { Box, useTheme } from '@mui/material';
export const CustomLoader = () => {
const theme = useTheme();
return (
<Box
sx={{
'--text-primary': theme.palette.text.primary,
}}
className="lds-ellipsis"
>
<div></div>
<div></div>
<div></div>
<div></div>
</Box>
);
};