diff --git a/src/Date/Month.tsx b/src/Date/Month.tsx index 92353087..e9466927 100644 --- a/src/Date/Month.tsx +++ b/src/Date/Month.tsx @@ -1,11 +1,11 @@ import * as React from 'react' import { StyleSheet, View } from 'react-native' import { - IconButton, Text, useTheme, TouchableRipple, MD2Theme, + Icon, } from 'react-native-paper' import Day, { EmptyDay } from './Day' @@ -302,18 +302,25 @@ function Month(props: MonthSingleProps | MonthRangeProps | MonthMultiProps) { > {monthName} {year} - - onPressYear(year) : undefined} - disabled - icon={ - selectingYear - ? theme.isV3 - ? 'menu-up' - : 'chevron-up' - : theme.isV3 - ? 'menu-down' - : 'chevron-down' + + @@ -362,6 +369,9 @@ export const monthHeaderSingleHeight = monthHeaderSingleMarginTop + monthHeaderSingleMarginBottom const styles = StyleSheet.create({ + iconWrapper: { + padding: 8 + }, week: { flexDirection: 'row', marginBottom: weekMargin,