import * as React from 'react'; import { StyleSheet, Text, Image, TouchableHighlight, Alert, ImageProps, } from 'react-native'; import { FC } from 'react'; type ISport = { title: string; image: ImageProps; }; const Sport: FC = ({ title, image }) => ( Alert.alert('Click', title)} > <> {title} ); export { Sport }; const styles = StyleSheet.create({ sport: { paddingVertical: 24, paddingHorizontal: 24, backgroundColor: '#222232', marginRight: 12, borderRadius: 8, }, sportItem: { fontSize: 22, color: '#FFFFFF', marginTop: 12, }, sportIcon: { height: 32, width: 32, alignSelf: 'center', }, });