### Is there an existing issue for this? - [X] I have searched the existing issues and my issue is unique - [X] My issue appears in the command-line and not only in the text editor ### Description Overview <!--Brief description--> When combining `React.memo` with `React.forwardRef`, `react/no-unused-prop-types` gives false positive. <!--Show example of your code (as text format), add images/videos/gifs to help explain example--> <!--and/or Link of repo to where issue is occurring--> ```ts import { Image } from "react-native"; type Props = { foo: string; }; const LazyImage = React.memo<Props>( React.forwardRef<Image, Props>( ({ foo }, ref) => { console.log("foo", foo); return <Image ref={ref} />; } ) ); ``` <!--What is happening? / What is the error?--> <!--What command(s) did you run to reproduce issue?--> ### Expected Behavior <!--Brief description--> No error <!--Show example of code (as text format), add images/videos/gifs to help explain expected behavior--> ### eslint-plugin-react version v7.32.0 ### eslint version v8.31.0 ### node version v16.17.0