import { Box, LinearProgress as MuiLinearProgress } from "@mui/material"; import { styled } from "@mui/material/styles"; const PREFIX = "MuiLinearProgress"; const classes = { chip: `${PREFIX}-bar`, }; const StyledMuiLinearProgress = styled(MuiLinearProgress, { shouldForwardProp: (prop) => prop !== "barBackground" && prop !== 'barColor' && prop !== 'height' })(({ theme, barColor, barBackground, height }) => ({ height: height || 8, borderRadius: 4, backgroundColor: barBackground || theme.palette.grey[300], '& .MuiLinearProgress-bar': { backgroundColor: barColor || theme.palette.primary.main } })); const LinearProgressBar = (props) => { return ( {props.target && } ) } export default LinearProgressBar;