A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/pages/confirmation/components/confirmation-footer/confirmation-footer.js

33 lines
802 B

import React from 'react';
import PropTypes from 'prop-types';
import Button from '../../../../components/ui/button';
export default function ConfirmationFooter({
onApprove,
onCancel,
approveText,
cancelText,
alerts,
}) {
return (
<div className="confirmation-footer">
{alerts}
<div className="confirmation-footer__actions">
<Button type="secondary" onClick={onCancel}>
{cancelText}
</Button>
<Button type="primary" onClick={onApprove}>
{approveText}
</Button>
</div>
</div>
);
}
ConfirmationFooter.propTypes = {
alerts: PropTypes.node,
onApprove: PropTypes.func.isRequired,
onCancel: PropTypes.func.isRequired,
approveText: PropTypes.string.isRequired,
cancelText: PropTypes.string.isRequired,
};