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