import { motion } from "framer-motion"; import type { PropsWithChildren } from "react"; interface MotionProps extends PropsWithChildren { className?: string; delay?: number; } const FadeOut = (props: MotionProps) => ( {props.children} ); FadeOut.displayName = "FadeOut"; export default FadeOut;