materialuiupgraded
Version:
Material-UI's workspace package
38 lines (24 loc) • 1.78 kB
Markdown
---
filename: /packages/material-ui/src/Fade/Fade.js
title: Fade API
---
<!--- This documentation is automatically generated, do not try to edit it. -->
# Fade
<p class="description">The API documentation of the Fade React component. Learn more about the properties and the CSS customization points.</p>
```js
import Fade from '@material-ui/core/Fade';
```
The Fade transition is used by the [Modal](/utils/modal/) component.
It uses [react-transition-group](https://github.com/reactjs/react-transition-group) internally.
## Props
| Name | Type | Default | Description |
|:-----|:-----|:--------|:------------|
| <span class="prop-name">children</span> | <span class="prop-type">union: element |<br> func<br> | | A single child content element. |
| <span class="prop-name">in</span> | <span class="prop-type">bool | | If `true`, the component will transition in. |
| <span class="prop-name">timeout</span> | <span class="prop-type">union: number |<br> { enter?: number, exit?: number }<br> | <span class="prop-default">{ enter: duration.enteringScreen, exit: duration.leavingScreen,}</span> | The duration for the transition, in milliseconds. You may specify a single timeout for all transitions, or individually with an object. |
Any other properties supplied will be spread to the root element ([Transition](https://reactcommunity.org/react-transition-group/#Transition)).
## Inheritance
The properties of the [Transition](https://reactcommunity.org/react-transition-group/#Transition) component, from react-transition-group, are also available.
You can take advantage of this behavior to [target nested components](/guides/api/#spread).
## Demos
- [Transitions](/utils/transitions/)