Local modifications to ClusterLabs/Anvil by Alteeve
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
403 B

import { LinearProgress, linearProgressClasses, styled } from '@mui/material';
import { BORDER_RADIUS } from '../../lib/consts/DEFAULT_THEME';
const BorderLinearProgress = styled(LinearProgress)({
backgroundColor: 'transparent',
borderRadius: BORDER_RADIUS,
height: '1em',
[`& .${linearProgressClasses.bar}`]: {
borderRadius: BORDER_RADIUS,
},
});
export default BorderLinearProgress;