import * as React from "react"; import ChevronLeft from "../../icons/chevron-left.svg"; import ChevronRight from "../../icons/chevron-right.svg"; export interface DateNavigationToolbarProps { year: number; label: string; onPrevious: () => void; onNext: () => void; onToday: () => void; } const DateNavigationToolbar: React.VoidFunctionComponent = ({ year, label, onPrevious, onToday, onNext }) => { return (
{year} {label}
); }; export default DateNavigationToolbar;