import {__} from '@wordpress/i18n'
import ModalDialog from '@givewp/components/AdminUI/ModalDialog';
import {ErrorIcon} from '../../Icons';
import styles from '../CampaignDetailsPage.module.scss'
/**
* @since 4.0.0
*/
export default ({
isOpen,
title,
handleClose,
handleConfirm,
className,
}: {
isOpen: boolean;
handleClose: () => void;
handleConfirm: () => void;
title: string;
className?: string;
}) => {
return (