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