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