"use client"; import { motion } from "motion/react"; export default ({ children, props }) => { const { duration = 1, delay = 0 } = props || {}; return ( {children} ); };