import React from "react"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import { styled } from '@mui/material/styles'; import Box from '@mui/material/Box'; import CircularProgress, { circularProgressClasses, } from '@mui/material/CircularProgress'; import LinearProgress, { linearProgressClasses } from '@mui/material/LinearProgress'; const BorderLinearProgress = styled(LinearProgress)(({ theme }) => ({ height: 10, borderRadius: 5, [`&.${linearProgressClasses.colorPrimary}`]: { backgroundColor: theme.palette.grey[theme.palette.mode === 'light' ? 200 : 800], }, [`& .${linearProgressClasses.bar}`]: { borderRadius: 5, backgroundColor: theme.palette.mode === 'light' ? '#1a90ff' : '#308fe8', }, })); // Inspired by the former Facebook spinners. function FacebookCircularProgress(props) { return ( theme.palette.grey[theme.palette.mode === 'light' ? 200 : 800], }} size={40} thickness={4} {...props} value={100} /> (theme.palette.mode === 'light' ? '#1a90ff' : '#308fe8'), animationDuration: '550ms', position: 'absolute', left: 0, [`& .${circularProgressClasses.circle}`]: { strokeLinecap: 'round', }, }} size={40} thickness={4} {...props} /> ); } export default function Customization() { return ( <> Customization
); }