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.
15 lines
364 B
15 lines
364 B
3 years ago
|
import { LinearProgress } from '@mui/material';
|
||
|
import { styled } from '@mui/material/styles';
|
||
|
import {
|
||
|
PANEL_BACKGROUND,
|
||
|
BORDER_RADIUS,
|
||
|
} from '../../lib/consts/DEFAULT_THEME';
|
||
|
|
||
|
const BorderLinearProgress = styled(LinearProgress)({
|
||
|
height: '1em',
|
||
|
borderRadius: BORDER_RADIUS,
|
||
|
backgroundColor: PANEL_BACKGROUND,
|
||
|
});
|
||
|
|
||
|
export default BorderLinearProgress;
|