diff --git a/docs/pages/material-ui/api/alert.json b/docs/pages/material-ui/api/alert.json
index 0ac352af3a73b8..6fea5908c00a95 100644
--- a/docs/pages/material-ui/api/alert.json
+++ b/docs/pages/material-ui/api/alert.json
@@ -17,13 +17,13 @@
},
"default": "{}",
"deprecated": true,
- "deprecationInfo": "use the slots
prop instead. This prop will be removed in v7."
+ "deprecationInfo": "use the slots
prop instead. This prop will be removed in v7. How to migrate."
},
"componentsProps": {
"type": { "name": "shape", "description": "{ closeButton?: object, closeIcon?: object }" },
"default": "{}",
"deprecated": true,
- "deprecationInfo": "use the slotProps
prop instead. This prop will be removed in v7."
+ "deprecationInfo": "use the slotProps
prop instead. This prop will be removed in v7. How to migrate."
},
"icon": { "type": { "name": "node" } },
"iconMapping": {
diff --git a/packages/mui-material/src/Alert/Alert.d.ts b/packages/mui-material/src/Alert/Alert.d.ts
index 3e009b173cc695..70875f28848eea 100644
--- a/packages/mui-material/src/Alert/Alert.d.ts
+++ b/packages/mui-material/src/Alert/Alert.d.ts
@@ -58,7 +58,7 @@ export interface AlertProps extends StandardProps {
/**
* The components used for each slot inside.
*
- * @deprecated use the `slots` prop instead. This prop will be removed in v7.
+ * @deprecated use the `slots` prop instead. This prop will be removed in v7. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/).
*
* @default {}
*/
@@ -70,7 +70,7 @@ export interface AlertProps extends StandardProps {
* The extra props for the slot components.
* You can override the existing props or add new ones.
*
- * @deprecated use the `slotProps` prop instead. This prop will be removed in v7.
+ * @deprecated use the `slotProps` prop instead. This prop will be removed in v7. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/).
*
* @default {}
*/
diff --git a/packages/mui-material/src/Alert/Alert.js b/packages/mui-material/src/Alert/Alert.js
index 49004f7556150c..6ef3b031dcad90 100644
--- a/packages/mui-material/src/Alert/Alert.js
+++ b/packages/mui-material/src/Alert/Alert.js
@@ -272,7 +272,7 @@ Alert.propTypes /* remove-proptypes */ = {
/**
* The components used for each slot inside.
*
- * @deprecated use the `slots` prop instead. This prop will be removed in v7.
+ * @deprecated use the `slots` prop instead. This prop will be removed in v7. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/).
*
* @default {}
*/
@@ -284,7 +284,7 @@ Alert.propTypes /* remove-proptypes */ = {
* The extra props for the slot components.
* You can override the existing props or add new ones.
*
- * @deprecated use the `slotProps` prop instead. This prop will be removed in v7.
+ * @deprecated use the `slotProps` prop instead. This prop will be removed in v7. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/).
*
* @default {}
*/