Styled TextInput Ref TypeScript Error
When using styled on TextInput to create a styled component, I get a TypeScript error if I pass ref to it (regardless of the actual ref value):

However, I am able to use the ref just fine after placing @ts-ignore above the StyledTextInput. I believe this is only an issue on the TypeScript side.
It would be nice to see this get fixed. Thanks!
Hi! 👋🏻
I'm kindah banging my head against the wall with this one since the TS side of things is mostly copied from the Stitches core and adapted to React Native as much as possible.
I guess a temp fix for this could be to set the ref type to ref?: any in Stitches Native internal typings and hope that some TS wizard comes and fixes the issue for real 😄
Added the above ref?: any temp fix in v0.2.1.
You can still maintain proper type safety with the ref even though the styled component prop is typed as any, so I hope this is an ok fix for now 😄
I'll leave the issue open if someone comes and is able to fix this properly.