UNPKG

goobs-frontend

Version:

A comprehensive React-based libary for building modern web applications

15 lines 733 B
import { default as React } from 'react'; import { SlideStyles } from '../../theme'; export interface SlideProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'style'> { /** The content to be wrapped with slide transition. */ children: React.ReactNode; /** Comprehensive styling options including theme, animation timing, direction, and transition properties. */ styles?: SlideStyles; } /** * A slide transition component with theming support for smooth transform animations. * Supports sliding from different directions: up, down, left, right. */ declare const Slide: React.ForwardRefExoticComponent<SlideProps & React.RefAttributes<HTMLDivElement>>; export default Slide; //# sourceMappingURL=index.d.ts.map