source: src/theme/overrides/components/progress.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.1 KB
Line 
1import { Theme, alpha } from '@mui/material/styles';
2import { LinearProgressProps, linearProgressClasses } from '@mui/material/LinearProgress';
3
4// ----------------------------------------------------------------------
5
6const COLORS = ['primary', 'secondary', 'info', 'success', 'warning', 'error'] as const;
7
8// ----------------------------------------------------------------------
9
10export function progress(theme: Theme) {
11 const rootStyles = (ownerState: LinearProgressProps) => {
12 const bufferVariant = ownerState.variant === 'buffer';
13
14 const defaultStyle = {
15 borderRadius: 4,
16 [`& .${linearProgressClasses.bar}`]: {
17 borderRadius: 4,
18 },
19 ...(bufferVariant && {
20 backgroundColor: 'transparent',
21 }),
22 };
23
24 const colorStyle = COLORS.map((color) => ({
25 ...(ownerState.color === color && {
26 backgroundColor: alpha(theme.palette[color].main, 0.24),
27 }),
28 }));
29
30 return [defaultStyle, ...colorStyle];
31 };
32
33 return {
34 MuiLinearProgress: {
35 styleOverrides: {
36 root: ({ ownerState }: { ownerState: LinearProgressProps }) => rootStyles(ownerState),
37 },
38 },
39 };
40}
Note: See TracBrowser for help on using the repository browser.