mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-24 20:18:09 +00:00
21 lines
454 B
TypeScript
21 lines
454 B
TypeScript
import { Platform, Text as RNText, type TextProps } from "react-native";
|
|
export function Text(props: TextProps) {
|
|
const { style, ...otherProps } = props;
|
|
if (Platform.isTV)
|
|
return (
|
|
<RNText
|
|
allowFontScaling={false}
|
|
style={[{ color: "white" }, style]}
|
|
{...otherProps}
|
|
/>
|
|
);
|
|
|
|
return (
|
|
<RNText
|
|
allowFontScaling={false}
|
|
style={[{ color: "white" }, style]}
|
|
{...otherProps}
|
|
/>
|
|
);
|
|
}
|