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