"use client";
import { motion, type HTMLMotionProps } from "framer-motion";
type Props = HTMLMotionProps<"div"> & {
delay?: number;
};
export function AnimateOnScroll({ children, delay = 0, className = "", ...rest }: Props) {
return (
{children}
);
}