+
+
+
+ navigate_before}
+ onClick={() => state.focusPreviousSection(true)}
+ disabled={
+ !!state.minValue &&
+ state.minValue.year > state.focusedDate.add({ years: -1 }).year
+ }
+ aria-label={t(
+ "components.forms.date_picker.previous_year_button_aria_label"
+ )}
+ />
+ arrow_drop_down}
+ {...downshiftYear.getToggleButtonProps()}
+ aria-label={t(
+ "components.forms.date_picker.year_select_button_aria_label"
+ )}
+ >
+ {yearItemsFormatter.format(
+ state.focusedDate.toDate(state.timeZone)
+ )}
+
+ navigate_next}
+ onClick={() => state.focusNextSection(true)}
+ disabled={
+ !!state.maxValue &&
+ state.maxValue.year < state.focusedDate.add({ years: 1 }).year
+ }
+ aria-label={t(
+ "components.forms.date_picker.next_year_button_aria_label"
+ )}
+ />
+
+