import React from 'react'; import { TouchableOpacity, Image } from 'react-native'; import styles from './styles'; const ImageButton = ({ sourceImage, onPress, size }) => { return ( ); }; export default ImageButton;