import React from 'react'; import {View, Text, Pressable} from 'react-native'; import style from './style'; import * as Common from '../../utils/Style'; interface Props { onPress(): void; buttonTitle: string; testID: string; } const IButton: React.FC = props => { const {onPress, buttonTitle, testID} = props; return ( {buttonTitle} ); }; export default IButton;