UNPKG

react-native-persian-calendar-modal

Version:

Persian Calendar Modal Component for React Native

19 lines (17 loc) 474 B
import React from 'react'; import {TouchableOpacity} from "react-native"; export function Touchable({style,...props}) { const handlePress=()=>{ props.onPress(props.value) }; return ( <TouchableOpacity activeOpacity={0.7} {...props} onPress={handlePress} style={[{padding:5},style]} > {props.children} </TouchableOpacity> ) }