Repository URL to install this package:
Version:
0.9.6 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
atoms
/
Overlay
/
Transition
/
Transition.d.ts
|
---|
import React from 'react';
import { TransitionProps } from './typings';
import { renderTransition as defaultRenderTransition } from './_renderProps';
declare class Transition extends React.PureComponent<TransitionProps> {
static displayName: string;
static defaultProps: {
renderTransition: typeof defaultRenderTransition;
};
render(): JSX.Element;
}
export { Transition };
export default Transition;