What the React version of the project you import the component?
I got the same error and found 2 solutions
-
Use React < 17 & Typescript < 4.1.0 with the following tsconfig change:
"jsx": "react" // from jsx-react -
Use React 17 on both the library and the other repository with
"jsx": "react-jsx"