UNPKG

@mohamadkh75/react-native-jalali-datepicker

Version:

React Native Jalali DatePicker component for both Android and iOS

17 lines (14 loc) 457 B
import React, { memo } from 'react'; import { Text, TouchableOpacity } from 'react-native'; const Month = memo( ({ title, disabled, selectMonth, eachMonthStyle, eachMonthTextStyle }) => ( <TouchableOpacity style={[eachMonthStyle, { opacity: disabled ? 0.5 : 1 }]} onPress={selectMonth} disabled={disabled} > <Text style={eachMonthTextStyle}>{title}</Text> </TouchableOpacity> ) ); export { Month };