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