Pressable: add onHoverIn and onHoverOut web props (#743) · rescript-react-native/rescript-react-native@e625be2

Original file line numberDiff line numberDiff line change

@@ -57,7 +57,10 @@ external make: (

5757

~testID: string=?,

5858

~testOnly_pressed: bool=?,

5959

~unstable_pressDelay: int=?,

60-

// react-native-web 0.16 View props

60+

// react-native-web 0.16 Pressable (View) props

6161

~href: string=?,

6262

~hrefAttrs: Web.hrefAttrs=?,

63+

// react-native-web 0.16 Pressable props

64+

~onHoverIn: ReactEvent.Mouse.t => unit=?,

65+

~onHoverOut: ReactEvent.Mouse.t => unit=?,

6366

) => React.element = "Pressable"