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/components/app/signature-request/signature-request-footer/signature-request-footer.co...

28 lines
746 B

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import Button from '../../../ui/button';
export default class SignatureRequestFooter extends PureComponent {
static propTypes = {
cancelAction: PropTypes.func.isRequired,
signAction: PropTypes.func.isRequired,
};
static contextTypes = {
t: PropTypes.func,
};
render() {
const { cancelAction, signAction } = this.props;
return (
<div className="signature-request-footer">
<Button onClick={cancelAction} type="default" large>
{this.context.t('cancel')}
</Button>
<Button onClick={signAction} type="primary" large>
{this.context.t('sign')}
</Button>
</div>
);
}
}