AbdulElahGwaith's picture
Upload folder using huggingface_hub
95b5a04 verified
// material-ui
import LinearProgress from '@mui/material/LinearProgress';
import Box from '@mui/material/Box';
// ==============================|| LOADER ||============================== //
export default function Loader() {
return (
<Box sx={{ position: 'fixed', top: 0, left: 0, zIndex: 1301, width: '100%' }}>
<LinearProgress color="primary" />
</Box>
);
}