OneManテキスト移動、CSS若干整理
This commit is contained in:
@@ -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>
|
||||
);
|
||||
};
|
Reference in New Issue
Block a user