GoScrobble/web/node_modules/react-bootstrap/cjs/Fade.d.ts

15 lines
496 B
TypeScript

import React from 'react';
import Transition from 'react-transition-group/Transition';
import { TransitionCallbacks } from './helpers';
export interface FadeProps extends TransitionCallbacks {
className?: string;
in?: boolean;
mountOnEnter?: boolean;
unmountOnExit?: boolean;
appear?: boolean;
timeout?: number;
children: React.ReactElement;
}
declare const Fade: React.ForwardRefExoticComponent<FadeProps & React.RefAttributes<Transition<any>>>;
export default Fade;