import type { SVGProps } from 'react'; import { Ref, forwardRef } from 'react'; const SvgJsonField = (props: SVGProps, ref: Ref) => ( ); const ForwardRef = forwardRef(SvgJsonField); export default ForwardRef;