import * as React from "react"; import { Linking, StyleProp, StyleSheet, Text, TextStyle, View, ViewProps, } from "react-native"; interface Props extends ViewProps { textStyle?: StyleProp; linkStyle?: StyleProp; } export default function FirebaseRecaptchaBanner(props: Props) { const { textStyle, linkStyle, ...otherProps } = props; return ( This app is protected by reCAPTCHA and the Google Linking.openURL("https://policies.google.com/privacy")} >  Privacy Policy  and Linking.openURL("https://policies.google.com/terms")} >  Terms of Service  apply. ); } const styles = StyleSheet.create({ content: { ...StyleSheet.absoluteFillObject, }, text: { fontSize: 13, opacity: 0.5, }, link: { color: "blue", }, });