import { __, sprintf } from '@wordpress/i18n' import { Button } from '../Button/Button' import { ReactComponent as ArrowRightIcon } from '../../../../public/images/icon-arrow-right.svg' import { IEmptyMonthOverlayProps } from './types' import './EmptyMonthOverlay.scss' export const EmptyMonthOverlay = ({ monthName, onNextMonth, }: IEmptyMonthOverlayProps) => { return (
{sprintf( __('No times in %s', 'webba-booking-lite'), monthName )}