ReactNativeProps
reexport
type
ReactNativeProps
=
Pick
<
ViewProps
,
Extract
<
keyof
ViewProps
,
Exclude
<
keyof
TextProps
,
"style"
>
>
>
 Â
&
Pick
<
TextProps
,
Extract
<
keyof
TextProps
,
Exclude
<
keyof
ViewProps
,
"style"
>
>
>
 Â
&
{
   Â
style
?
:
StyleProp
<
Pick
<
ViewStyle
,
Extract
<
keyof
ViewStyle
,
keyof
TextStyle
>
>
>
;
 Â
}
Defined in
@native-html/transient-render-engine
Props available on both React Native Text
and View
components.