12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import * as React from 'react';
|
|
import { Theme } from '../styles/createMuiTheme';
|
|
import { TransitionProps } from './transition';
|
|
|
|
export interface FadeProps extends TransitionProps {
|
|
theme?: Theme;
|
|
}
|
|
|
|
declare const Fade: React.ComponentType<FadeProps>;
|
|
|
|
export default Fade;
|