rsuite
Version:
A suite of react components
10 lines (9 loc) • 326 B
TypeScript
import React from 'react';
import { TransitionProps } from './Transition';
export type FadeProps = TransitionProps;
/**
* Fade animation component
* @see https://rsuitejs.com/components/animation/#fade
*/
declare const Fade: React.ForwardRefExoticComponent<TransitionProps & React.RefAttributes<any>>;
export default Fade;