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