import React from 'react' import PropTypes from 'prop-types' import AnimatedCheckmark from 'components/AnimatedCheckmark' import styles from './SuccessfulSendPayment.scss' const SuccessfulSendPayment = ({ hideModal }) => (

Successfully sent payment 

Done
) SuccessfulSendPayment.propTypes = { hideModal: PropTypes.func.isRequired } export default SuccessfulSendPayment