{
"componentDescription": "## ARIA\n\nIf the progress bar is describing the loading progress of a particular region of a page,\nyou should use `aria-describedby` to point to the progress bar, and set the `aria-busy`\nattribute to `true` on that region until it has finished loading.",
"propDescriptions": {
"classes": { "description": "Override or extend the styles applied to the component." },
"color": {
"description": "The color of the component. It supports both default and custom theme colors, which can be added as shown in the palette customization guide."
},
"disableShrink": {
"description": "If true, the shrink animation is disabled. This only works if variant is indeterminate."
},
"enableTrackSlot": {
"description": "If true, a track circle slot is mounted to show a subtle background for the progress. The size and thickness apply to the track slot to be consistent with the progress circle."
},
"size": {
"description": "The size of the component. If using a number, the pixel unit is assumed. If using a string, you need to provide the CSS unit, for example '3rem'."
},
"sx": {
"description": "The system prop that allows defining system overrides as well as additional CSS styles."
},
"thickness": { "description": "The thickness of the circle." },
"value": {
"description": "The value of the progress indicator for the determinate variant. Value between 0 and 100."
},
"variant": {
"description": "The variant to use. Use indeterminate when there is no progress value."
}
},
"classDescriptions": {
"circle": {
"description": "Styles applied to {{nodeName}}.",
"nodeName": "the circle svg path"
},
"circleDeterminate": {
"description": "Styles applied to {{nodeName}} if {{conditions}}.",
"nodeName": "the circle svg path",
"conditions": "variant=\"determinate\"",
"deprecationInfo": "Combine the .MuiCircularProgress-circle and .MuiCircularProgress-determinate classes instead. See Migrating from deprecated APIs for more details."
},
"circleDisableShrink": {
"description": "Styles applied to {{nodeName}} if {{conditions}}.",
"nodeName": "the circle svg path",
"conditions": "disableShrink={true}"
},
"circleIndeterminate": {
"description": "Styles applied to {{nodeName}} if {{conditions}}.",
"nodeName": "the circle svg path",
"conditions": "variant=\"indeterminate\"",
"deprecationInfo": "Combine the .MuiCircularProgress-circle and .MuiCircularProgress-indeterminate classes instead. See Migrating from deprecated APIs for more details."
},
"colorPrimary": {
"description": "Styles applied to {{nodeName}} if {{conditions}}.",
"nodeName": "the root element",
"conditions": "color=\"primary\""
},
"colorSecondary": {
"description": "Styles applied to {{nodeName}} if {{conditions}}.",
"nodeName": "the root element",
"conditions": "color=\"secondary\""
},
"determinate": {
"description": "Styles applied to {{nodeName}} if {{conditions}}.",
"nodeName": "the root element",
"conditions": "variant=\"determinate\""
},
"indeterminate": {
"description": "Styles applied to {{nodeName}} if {{conditions}}.",
"nodeName": "the root element",
"conditions": "variant=\"indeterminate\""
},
"root": { "description": "Styles applied to the root element." },
"svg": { "description": "Styles applied to {{nodeName}}.", "nodeName": "the svg element" },
"track": {
"description": "Styles applied to {{nodeName}} if {{conditions}}.",
"nodeName": "the track slot",
"conditions": "enableTrackSlot={true}"
}
}
}