import { PlusCircleIcon } from "@heroicons/react/24/outline"; import React from "react"; export interface AddMonthButtonProps { year: number; month: number; } export const AddMonthButton:React.FC = ({ year, month }) =>