jrshikoku/components/ActionSheetComponents/EachTrainInfoCore/HeaderTextParts/OneManText.tsx
2025-01-05 16:18:07 +00:00

17 lines
438 B
TypeScript

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>
);
};