// @flow import React from 'react'; import { Modal } from 'modal/modal'; import Button from 'component/button'; import Card from 'component/common/card'; import I18nMessage from 'component/i18nMessage'; type Props = { chargeCode: string, removeCoinSwap: (string) => void, closeModal: () => void, }; function ModalRemoveBtcSwapAddress(props: Props) { const { chargeCode, removeCoinSwap, closeModal } = props; return ( {`${chargeCode}`} }}>Remove %address%?} body={

{__('This process cannot be reversed.')}

} actions={ <>
} />
); } export default ModalRemoveBtcSwapAddress;