diff --git a/docs/data/material/components/progress/CustomizedProgressBars.js b/docs/data/material/components/progress/CustomizedProgressBars.js
index 0eb012a3ce01c7..df1c522d6bc9b6 100644
--- a/docs/data/material/components/progress/CustomizedProgressBars.js
+++ b/docs/data/material/components/progress/CustomizedProgressBars.js
@@ -1,6 +1,7 @@
import * as React from 'react';
import { styled } from '@mui/material/styles';
import Box from '@mui/material/Box';
+import Stack from '@mui/material/Stack';
import CircularProgress, {
circularProgressClasses,
} from '@mui/material/CircularProgress';
@@ -53,12 +54,31 @@ function FacebookCircularProgress(props) {
);
}
+// From https://github.com/mui/material-ui/issues/9496#issuecomment-959408221
+
+function GradientCircularProgress() {
+ return (
+
+
+
+
+ );
+}
+
export default function CustomizedProgressBars() {
return (
-
+
+
-
+
);
}
diff --git a/docs/data/material/components/progress/CustomizedProgressBars.tsx b/docs/data/material/components/progress/CustomizedProgressBars.tsx
index a3951b14b7bc23..7a6d658104e463 100644
--- a/docs/data/material/components/progress/CustomizedProgressBars.tsx
+++ b/docs/data/material/components/progress/CustomizedProgressBars.tsx
@@ -1,6 +1,7 @@
import * as React from 'react';
import { styled } from '@mui/material/styles';
import Box from '@mui/material/Box';
+import Stack from '@mui/material/Stack';
import CircularProgress, {
circularProgressClasses,
CircularProgressProps,
@@ -54,12 +55,30 @@ function FacebookCircularProgress(props: CircularProgressProps) {
);
}
+// From https://github.com/mui/material-ui/issues/9496#issuecomment-959408221
+function GradientCircularProgress() {
+ return (
+
+
+
+
+ );
+}
+
export default function CustomizedProgressBars() {
return (
-
+
+
-
+
);
}
diff --git a/docs/data/material/components/progress/CustomizedProgressBars.tsx.preview b/docs/data/material/components/progress/CustomizedProgressBars.tsx.preview
index fc729dfa08cbc3..af47cf1601ebf2 100644
--- a/docs/data/material/components/progress/CustomizedProgressBars.tsx.preview
+++ b/docs/data/material/components/progress/CustomizedProgressBars.tsx.preview
@@ -1,3 +1,4 @@
+
\ No newline at end of file