UNPKG

material-ui-cordova

Version:

React components that implement Google's Material Design.

13 lines (9 loc) 349 B
import * as React from 'react'; import { Theme } from '../styles/createMuiTheme'; import { TransitionDuration, TransitionProps } from '../internal/transition'; export interface GrowProps extends TransitionProps { theme?: Theme; timeout?: TransitionDuration | 'auto'; } declare const Grow: React.ComponentType<GrowProps>; export default Grow;