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-engineProps available on both React Native Text and View components.