/** * External dependencies */ import { Button, Modal } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; export const GoBackWarningModal = ( { setOpenWarningModal, onExitClicked, classname = 'woocommerce-customize-store__design-change-warning-modal', }: { setOpenWarningModal: ( arg0: boolean ) => void; onExitClicked: () => void; classname?: string; } ) => { return ( setOpenWarningModal( false ) } shouldCloseOnClickOutside={ false } >

{ __( "You'll lose any changes you've made to your store's design and will start the process again.", 'woocommerce' ) }

); };