import { Spinner } from '@woocommerce/components'; import { Flex, Modal } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; interface PrepayProcessingProps { onRequestClose: () => void; } export function PrepayProcessing({ onRequestClose }: PrepayProcessingProps) { return (

{__('Please wait while we process your PrePay payment...', 'parcel2go-shipping')}

); }