import { Text, StyleSheet, TouchableOpacity } from 'react-native'; import React from 'react'; import { STORM_BLUE } from '../../../constants/colors'; const styles = StyleSheet.create({ markReadStyle: { color: STORM_BLUE, fontSize: 14, paddingTop: 14, paddingBottom: 23, }, touchableOpacityContainer: { width: '100%', alignItems: 'center', justifyContent: 'center', }, }); type PropType = { onPress: () => void; option: string; }; function BottomModalOption({ onPress, option }: PropType) { return ( {option} ); } export default BottomModalOption;