UNPKG

monday-ui-react-core

Version:

Official monday.com UI resources for application development in React.js

13 lines (12 loc) 421 B
import React from "react"; import { Moment } from "../types"; export interface DatePickerHeaderProps { currentDate: Moment; isMonthYearSelection: boolean; onToggleMonthYearPicker: () => void; hideNavigationKeys: boolean; "data-testid"?: string; ariaLabel?: string; } declare const DatePickerHeader: (props: DatePickerHeaderProps) => React.JSX.Element; export default DatePickerHeader;