import { motion, type HTMLMotionProps } from 'framer-motion'; import { forwardRef, type ReactNode } from 'react'; import { slideUp, slideUpTransition } from './transitions'; interface SlideUpProps extends Omit, 'initial' | 'animate' | 'exit'> { children: ReactNode; delay?: number; duration?: number; } export const SlideUp = forwardRef( ({ children, delay = 0, duration, ...props }, ref) => { return ( {children} ); }, ); SlideUp.displayName = 'SlideUp';