@material-ui/core
Version:
React components that implement Google's Material Design.
14 lines (10 loc) • 384 B
TypeScript
import * as React from 'react';
import { Omit } from '..';
import { Theme } from '../styles/createMuiTheme';
import { TransitionProps } from '../transitions/transition';
export interface GrowProps extends Omit<TransitionProps, 'timeout'> {
theme?: Theme;
timeout?: TransitionProps['timeout'] | 'auto';
}
declare const Grow: React.ComponentType<GrowProps>;
export default Grow;