diff --git a/docs/pages/api-docs/collapse.md b/docs/pages/api-docs/collapse.md
index b9ef19b464f9b0..b8f578c65acafd 100644
--- a/docs/pages/api-docs/collapse.md
+++ b/docs/pages/api-docs/collapse.md
@@ -32,7 +32,8 @@ The `MuiCollapse` name can be used for providing [default props](/customization/
|:-----|:-----|:--------|:------------|
| children | node | | The content node to be collapsed. |
| classes | object | | Override or extend the styles applied to the component. See [CSS API](#css) below for more details. |
-| collapsedHeight | number | string | '0px' | The height of the container when collapsed. |
+| ~~collapsedHeight~~ | oneOfType([PropTypes.number | | *Deprecated*. The prop was renamed to support the vertical orientation, use `collapsedSize` instead
The height of the container when collapsed. |
+| collapsedSize | number | string | '0px' | The height of the container when collapsed. |
| component | elementType | 'div' | The component used for the root node. Either a string to use a HTML element or a component. |
| disableStrictModeCompat | bool | false | Enable this prop if you encounter 'Function components cannot be given refs', use `unstable_createStrictModeTheme`, and can't forward the ref in the passed `Component`. |
| in | bool | | If `true`, the component will transition in. |
@@ -48,7 +49,7 @@ Any other props supplied will be provided to the root element ([Transition](http
|:-----|:-------------|:------------|
| root | .MuiCollapse-root | Styles applied to the root element.
| entered | .MuiCollapse-entered | Styles applied to the root element when the transition has entered.
-| hidden | .MuiCollapse-hidden | Styles applied to the root element when the transition has exited and `collapsedHeight` != 0px.
+| hidden | .MuiCollapse-hidden | Styles applied to the root element when the transition has exited and `collapsedSize` != 0px.
| wrapper | .MuiCollapse-wrapper | Styles applied to the outer wrapper element.
| wrapperInner | .MuiCollapse-wrapperInner | Styles applied to the inner wrapper element.
diff --git a/docs/src/pages/components/transitions/SimpleCollapse.js b/docs/src/pages/components/transitions/SimpleCollapse.js
index 2f4a59c4989e49..9763fbb8b81675 100644
--- a/docs/src/pages/components/transitions/SimpleCollapse.js
+++ b/docs/src/pages/components/transitions/SimpleCollapse.js
@@ -48,7 +48,7 @@ export default function SimpleCollapse() {
-
+
-
+