Const
Create a customized Material UI Fade component.
All valid Material-UI Fade props
The Fade component
// Basic usage<Fade in={true}> <div>Content to fade</div></Fade>// With timeout<Fade in={isVisible} timeout={300}> <Card>Fading card</Card></Fade>// With unmount on exit<Fade in={show} unmountOnExit> <Typography>Content unmounts when faded out</Typography></Fade> Copy
// Basic usage<Fade in={true}> <div>Content to fade</div></Fade>// With timeout<Fade in={isVisible} timeout={300}> <Card>Fading card</Card></Fade>// With unmount on exit<Fade in={show} unmountOnExit> <Typography>Content unmounts when faded out</Typography></Fade>
https://mui.com/material-ui/transitions/#fade
Create a customized Material UI Fade component.