goobs-frontend
Version:
A comprehensive React-based libary for building modern web applications
14 lines • 642 B
TypeScript
import { default as React } from 'react';
import { FadeStyles } from '../../theme';
export interface FadeProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'style'> {
/** The content to be wrapped with fade transition. */
children: React.ReactNode;
/** Comprehensive styling options including theme, animation timing, and transition properties. */
styles?: FadeStyles;
}
/**
* A fade transition component with theming support for smooth opacity animations.
*/
declare const Fade: React.ForwardRefExoticComponent<FadeProps & React.RefAttributes<HTMLDivElement>>;
export default Fade;
//# sourceMappingURL=index.d.ts.map