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/app/components/page-container/page-container-footer/page-container-footer.compo...

55 lines
1.1 KiB

7 years ago
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import Button from '../../button'
7 years ago
export default class PageContainerFooter extends Component {
static propTypes = {
onCancel: PropTypes.func,
cancelText: PropTypes.string,
7 years ago
onSubmit: PropTypes.func,
submitText: PropTypes.string,
7 years ago
disabled: PropTypes.bool,
}
static contextTypes = {
t: PropTypes.func,
}
7 years ago
render () {
const {
onCancel,
cancelText,
onSubmit,
submitText,
disabled,
} = this.props
7 years ago
return (
<div className="page-container__footer">
<Button
type="default"
large={true}
className="page-container__footer-button"
7 years ago
onClick={() => onCancel()}
>
{ cancelText || this.context.t('cancel') }
</Button>
7 years ago
<Button
type="primary"
large={true}
className="page-container__footer-button"
7 years ago
disabled={disabled}
onClick={e => onSubmit(e)}
7 years ago
>
{ submitText || this.context.t('next') }
</Button>
7 years ago
</div>
)
7 years ago
}
}