// ** MUI Imports import Box from '@mui/material/Box' import { styled } from '@mui/material/styles' import CircularProgress, { CircularProgressProps } from '@mui/material/CircularProgress' const CircularProgressDeterminate = styled(CircularProgress)(({ theme }) => ({ color: theme.palette.customColors.trackBg })) const CircularProgressIndeterminate = styled(CircularProgress)(({ theme }) => ({ left: 0, position: 'absolute', animationDuration: '550ms', color: theme.palette.mode === 'light' ? '#1a90ff' : '#308fe8' })) const ProgressCircularCustomization = () => { return ( ) } export default ProgressCircularCustomization