UNPKG

@amaui/ui-react

Version:
13 lines (12 loc) 368 B
import React from 'react'; import { ITransition } from '..'; export interface ISlide extends ITransition { root?: HTMLElement; min?: number; direction?: 'top' | 'left' | 'bottom' | 'right'; timing_function?: string | Record<string, string>; addTransition?: string; delay?: number; } declare const Slide: React.FC<ISlide>; export default Slide;