kcscDev/egovframe-template-simple-r.../src/themes/overrides/LinearProgress.js

18 lines
353 B
JavaScript
Raw Normal View History

2024-01-31 07:28:08 +00:00
// ==============================|| OVERRIDES - LINER PROGRESS ||============================== //
export default function LinearProgress() {
return {
MuiLinearProgress: {
styleOverrides: {
root: {
height: 6,
borderRadius: 100
},
bar: {
borderRadius: 100
}
}
}
};
}