import { Platform, Text as RNText, type TextProps } from "react-native"; import { UITextView } from "react-native-uitextview"; export function Text( props: TextProps & { uiTextView?: boolean; }, ) { const { style, ...otherProps } = props; if (Platform.isTV) return ( ); return ( ); }