UNPKG

goobs-frontend

Version:

A comprehensive React-based libary for building modern web applications

14 lines 639 B
import { default as React } from 'react'; import { ZoomStyles } from '../../theme'; export interface ZoomProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'style'> { /** The content to be wrapped with zoom transition. */ children: React.ReactNode; /** Comprehensive styling options including theme, animation timing, and transform properties. */ styles?: ZoomStyles; } /** * A zoom transition component with theming support for smooth scale animations. */ declare const Zoom: React.ForwardRefExoticComponent<ZoomProps & React.RefAttributes<HTMLDivElement>>; export default Zoom; //# sourceMappingURL=index.d.ts.map