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