first commit

This commit is contained in:
Fredrik Burmester
2024-07-31 23:19:47 +02:00
commit 98880e05ec
119 changed files with 7305 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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}
/>
);
}