UNPKG

@useloops/design-system

Version:

The official React based Loops design system

10 lines (7 loc) 252 B
import { FunctionComponent, PropsWithChildren } from 'react'; interface FadeInProps extends PropsWithChildren { duration?: number; } declare const FadeIn: FunctionComponent<FadeInProps>; export { FadeIn as default }; export type { FadeInProps };