lbry-desktop/ui/js/modal/modalInsufficientCredits/view.jsx

25 lines
611 B
React
Raw Normal View History

2017-07-15 20:44:50 +02:00
import React from "react";
import { Modal } from "modal/modal";
2017-07-15 20:44:50 +02:00
class ModalInsufficientCredits extends React.PureComponent {
render() {
const { addFunds, closeModal } = this.props;
return (
<Modal
isOpen={true}
type="confirm"
contentLabel={__("Not enough credits")}
confirmButtonLabel={__("Get Credits")}
2017-08-22 23:19:33 +02:00
abortButtonLabel={__("Not Now")}
2017-07-15 20:44:50 +02:00
onAborted={closeModal}
onConfirmed={addFunds}
>
2017-08-22 23:19:33 +02:00
<p>{__("More LBRY credits are required to take this action.")}</p>
2017-07-15 20:44:50 +02:00
</Modal>
);
}
}
export default ModalInsufficientCredits;