import React, { FC } from "react"; import { Text, TextStyle, View, TouchableOpacity } from "react-native"; const descriptionStyle: TextStyle = { fontSize: parseInt("16%"), fontWeight: "bold", }; type Props = { info: string; numberOfLines?: number; onClick?: () => void; onLongClick?: () => void; }; export const Description:FC = ({ info, numberOfLines = 0, onClick, onLongClick }) => ( {numberOfLines == 1 ? ( 運行情報 >{" "} ) : ( > )} {info} );