import React, { FC } from "react"; import { Text, TextStyle, TouchableOpacity, View, ViewStyle, } from "react-native"; type Props = { onPress: () => void; string: string; style?: ViewStyle; tS?: TextStyle; children?: any; }; export const BigButton: FC = (props) => { const { onPress, string, style, tS, children } = props; return ( {children} {string} ); };