import { PlusCircleIcon } from "@heroicons/react/24/outline"; export interface AddLocationButtonProps { /** year at which the new billing location should be addes */ year: number /** month at which the new billing location should be addes */ month: number } export const AddLocationButton:React.FC = ({year,month}) =>
;