mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-07-10 07:11:20 +00:00
20 lines
364 B
TypeScript
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>
|
|
);
|
|
};
|