@elacity-js/uikit
Version:
React / Material UI Design kit for Elacity project
20 lines (17 loc) • 566 B
JavaScript
import { alpha } from '@mui/material/styles';
function LinearProgress(theme) {
return {
MuiLinearProgress: {
styleOverrides: {
root: {
background: alpha(theme.palette.vivid.main, 0.25),
},
barColorPrimary: {
background: `linear-gradient(90deg, transparent 0, ${theme.palette.primary.main} 50%, transparent 100%)`,
},
},
},
};
}
export { LinearProgress as default };
//# sourceMappingURL=MuiLinearProgress.js.map