import { SVGProps, Ref, forwardRef, memo } from "react"; import { cn } from "../utils"; const SvgComponent = ( props: SVGProps, ref: Ref ) => ( ); const ForwardRef = forwardRef(SvgComponent); const Memo = memo(ForwardRef); export { Memo as Menu };