In the screenshot above, I am trying to change the step color to either: green for correct, yellow for in-progress and red for incorrect.
How could I do this?>
You can set the classes property for the StepIconProps property:
StepIconProps
Some Text
Then your style should overwrite the default theme color by using the !important CSS rule:
!important
const styles = theme => ({ icon: { color: "red !important" }, });