OneManテキスト移動、CSS若干整理

This commit is contained in:
harukin-expo-dev-env
2025-01-05 16:18:07 +00:00
parent d05ec3f647
commit a33ffb013e
2 changed files with 52 additions and 69 deletions

View File

@@ -0,0 +1,16 @@
import React, { FC } from "react";
import { Text, View } from "react-native";
export const OneManText: FC = () => {
const styles = {
fontSize: 12,
margin: -2,
color: "white",
fontFamily: "Zou",
};
return (
<View style={{ flexDirection: "column", marginRight: 7 }}>
<Text style={{ ...styles, marginRight: 5 }}></Text>
<Text style={{ ...styles, marginLeft: 5 }}></Text>
</View>
);
};