import React from 'react'; import { IFadeInDownContainerProps, FadeInDownPresentation, Constant } from '.'; export const FadeInDown: React.FC = ({ delayInMS = 0, durationInMS = Constant.DEFAULT_DURATION_IN_MS, startPostionY = Constant.INITIAL_POSITION_Y, children, }) => { return ( {children} ); };