diff --git a/docs/pages/api/skeleton.md b/docs/pages/api/skeleton.md
index 081de9df900b36..4a086926ebb507 100644
--- a/docs/pages/api/skeleton.md
+++ b/docs/pages/api/skeleton.md
@@ -24,7 +24,6 @@ You can learn more about the difference by [reading this guide](/guides/minimizi
| Name | Type | Default | Description |
|:-----|:-----|:--------|:------------|
-| animationDelay | number
| string | | Delays the animation of the skeleton. Useful when you have multiple skeletons, and need them to pulse out of phase. |
| classes | object | | Override or extend the styles applied to the component. See [CSS API](#css) below for more details. |
| component | elementType | 'div' | The component used for the root node. Either a string to use a DOM element or a component. |
| disableAnimate | bool | false | If `true` the animation effect is disabled. |
diff --git a/docs/src/pages/components/skeleton/Delay.js b/docs/src/pages/components/skeleton/Delay.js
deleted file mode 100644
index 38696801b186fa..00000000000000
--- a/docs/src/pages/components/skeleton/Delay.js
+++ /dev/null
@@ -1,24 +0,0 @@
-import React from 'react';
-import Skeleton from '@material-ui/lab/Skeleton';
-
-export default function Variants() {
- return (
-
{ props: P & { - animationDelay?: string; disableAnimate?: boolean; height?: number | string; variant?: 'text' | 'rect' | 'circle'; diff --git a/packages/material-ui-lab/src/Skeleton/Skeleton.js b/packages/material-ui-lab/src/Skeleton/Skeleton.js index f27c06dca00d17..a24bdb36e877a9 100644 --- a/packages/material-ui-lab/src/Skeleton/Skeleton.js +++ b/packages/material-ui-lab/src/Skeleton/Skeleton.js @@ -47,7 +47,6 @@ export const styles = theme => ({ const Skeleton = React.forwardRef(function Skeleton(props, ref) { const { - animationDelay, classes, className, component: Component = 'div', @@ -73,7 +72,6 @@ const Skeleton = React.forwardRef(function Skeleton(props, ref) { style={{ width, height, - animationDelay, ...other.style, }} /> @@ -81,11 +79,6 @@ const Skeleton = React.forwardRef(function Skeleton(props, ref) { }); Skeleton.propTypes = { - /** - * Delays the animation of the skeleton. - * Useful when you have multiple skeletons, and need them to pulse out of phase. - */ - animationDelay: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), /** * Override or extend the styles applied to the component. * See [CSS API](#css) below for more details.