Files
streamyfin/components/common/Text.tsx
Fredrik Burmester 98880e05ec first commit
2024-07-31 23:19:47 +02:00

15 lines
342 B
TypeScript

import React from "react";
import { TextProps } from "react-native";
import { Text as DefaultText } from "react-native";
export function Text(props: TextProps) {
const { style, ...otherProps } = props;
return (
<DefaultText
allowFontScaling={false}
style={[{ color: "white" }, style]}
{...otherProps}
/>
);
}