"use client";
import { motion, HTMLMotionProps } from "framer-motion";
import { cn } from "@/lib/utils";
import { forwardRef } from "react";
interface MotionWrapperProps extends HTMLMotionProps<"div"> {
children: React.ReactNode;
className?: string;
}
export const MotionWrapper = forwardRef(
({ children, className, ...props }, ref) => {
return (
{children}
);
}
);
MotionWrapper.displayName = "MotionWrapper";