import { __experimentalText as Text, Button } from '@wordpress/components'; import { plus } from '@wordpress/icons'; import { useTranslate } from 'i18n-calypso'; interface Props { onCreateNewSchedule: () => void; } export const ScheduleListEmpty = ( props: Props ) => { const translate = useTranslate(); const { onCreateNewSchedule } = props; return (