UNPKG

@project44-manifest/react

Version:

Manifest Design System react components

15 lines 402 B
/// <reference types="react" /> import type { TransitionProps } from '../Transition'; export interface FadeProps extends Omit<TransitionProps, 'children'> { /** * Content of the transitioned element. */ children: React.ReactNode; /** * The animation duration in miliseconds. * * @default 200 */ duration?: number; } //# sourceMappingURL=Fade.types.d.ts.map