import React from 'react'; import { TouchableOpacity, Text, StyleSheet } from 'react-native'; const size = 36; const hitSlop = { top: 10, bottom: 10, left: 10, right: 10 }; interface ModalCloseButtonProps { onPress: () => void; } export default function ModalCloseButton({ onPress }: ModalCloseButtonProps) { return ( × ); } const styles = StyleSheet.create({ button: { alignItems: 'center', justifyContent: 'center', }, cross: { lineHeight: undefined, includeFontPadding: false, textAlign: 'center', }, });