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 ZoomProps extends TransitionProps {
|
|
theme?: Theme;
|
|
}
|
|
|
|
declare const Zoom: React.ComponentType<ZoomProps>;
|
|
|
|
export default Zoom;
|