@appbuckets/react-ui
Version:
Just Another React UI Framework
24 lines (23 loc) • 456 B
TypeScript
import * as React from 'react';
import { FadeProps } from './Fade.types';
declare const Fade: React.ForwardRefExoticComponent<
Pick<
FadeProps,
| 'style'
| 'children'
| 'visible'
| 'onEnter'
| 'onEntering'
| 'onEntered'
| 'onExit'
| 'onExiting'
| 'onExited'
| 'timeout'
| 'mountOnEnter'
| 'appear'
| 'unMountOnExit'
| 'easing'
> &
React.RefAttributes<HTMLElement>
>;
export default Fade;