Repository URL to install this package:
Version:
0.9.6 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
atoms
/
Overlay
/
Transition
/
typings.d.ts
|
---|
/// <reference types="react" />
export interface TransitionProps extends React.ClassAttributes<any> {
isVisible?: boolean;
children?: React.ReactNode;
renderTransition?: TransitionRenderProp;
}
export interface TransitionRenderProp {
(props: TransitionProps): RenderTransition;
}
export interface RenderTransition {
(state: string): React.ReactNode;
}