Answers for "how to change color of linear progress in material ui"

0

how to change color of linear progress in material ui

export const useStyles = makeStyles(() => ({
    root: {
        "& .MuiLinearProgress-colorPrimary": {
            backgroundColor: "red",
        },
        "& .MuiLinearProgress-barColorPrimary": {
            backgroundColor: "green",
        },
    },
})
Posted by: Guest on September-16-2021
0

how to change color of linear progress in material ui

export const useStyles = makeStyles(() => ({
    root: {
        "& .MuiLinearProgress-colorPrimary": {
            backgroundColor: "red",
        },
        "& .MuiLinearProgress-barColorPrimary": {
            backgroundColor: "green",
        },
    },
})
Posted by: Guest on September-16-2021

Code answers related to "how to change color of linear progress in material ui"

Browse Popular Code Answers by Language