How can I split a progress bar into more steps to achieve a design like this? https://i.stack.imgur.com/lRMj6.png
I attempted using this code but couldn't find an option for splitting:
<LinearProgress
variant="determinate"
classes={{ root: "progressBar", bar: "progressBar-bar" }}
value={(100 / stepsNumber) * stepNumber}
valueBuffer={40}
/>
Are there any additional options that I can add?