I am attempting to create a circular progress bar with a determinate value using Material-UI, similar to the example shown in this circular progress image.
However, the following code does not display the additional circle as the background:
<CircularProgress variant="determinate" value={value} />
I have consulted the MUI Docs about Circular Progress but I have not found any prop that supports this specific behavior. From my understanding, MUI utilizes a single SVG component for the Circular Progress and achieving the desired effect would require two SVG elements - one acting as the base structure while the other displays the loading progress.
Therefore, my question is how can I add an extra stroke color to the circular progress bar or achieve a similar result as demonstrated in the linked image above? Any assistance on this matter would be greatly appreciated. Thank you!