import { motion } from "framer-motion"; import { forwardRef } from "react"; export const Null = forwardRef((props: any, ref) => { const { shape } = props; const GradientType = shape?.gradient?.type === "radialGradient" ? "radialGradient" : "linearGradient"; return ( {}} /> {props?.children && props.children} ); });