import React from "react"; import { View, Text } from "react-native"; export const StateBox = ({ text, title, style, mode }) => ( {title} {text?.match("~") ? ( <> {text.split("~")[0]} {text.split("~")[1]} ) : ( {text} )} ); const boxStyle = { flex: 1, backgroundColor: "white", borderRadius: 10, padding: 10, margin: 10, }; const boxStyle2 = { flex: 1, backgroundColor: "white", borderRadius: 10, padding: 5, margin: 5, }; const boxTextStyle2 = { fontSize: 18, color: "#0099CC", textAlign: "right", }; const boxTextStyle = { fontSize: 25, color: "#0099CC", textAlign: "right", };