Skip to content

Commit

Permalink
Make props returned by .attrs optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Temzasse committed Feb 23, 2022
1 parent 06c8bfc commit 6b3e88c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/stitches.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ export default interface Stitches<
) => Type extends
| Native.ReactNativeElementsKeys
| React.ComponentType<any>
? Native.ReactNativeComponentPropsWithRef<Type>
? Partial<Native.ReactNativeComponentPropsWithRef<Type>>
: {}
) => StyledComponent.StyledComponent<
Type,
Expand Down

0 comments on commit 6b3e88c

Please sign in to comment.