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