mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
57 lines
1.2 KiB
JavaScript
57 lines
1.2 KiB
JavaScript
import React, { Component } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import Button from '../../button'
|
|
|
|
export default class PageContainerFooter extends Component {
|
|
|
|
static propTypes = {
|
|
onCancel: PropTypes.func,
|
|
cancelText: PropTypes.string,
|
|
onSubmit: PropTypes.func,
|
|
submitText: PropTypes.string,
|
|
disabled: PropTypes.bool,
|
|
submitButtonType: PropTypes.string,
|
|
}
|
|
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
}
|
|
|
|
render () {
|
|
const {
|
|
onCancel,
|
|
cancelText,
|
|
onSubmit,
|
|
submitText,
|
|
disabled,
|
|
submitButtonType,
|
|
} = this.props
|
|
|
|
return (
|
|
<div className="page-container__footer">
|
|
|
|
<Button
|
|
type="default"
|
|
large
|
|
className="page-container__footer-button"
|
|
onClick={e => onCancel(e)}
|
|
>
|
|
{ cancelText || this.context.t('cancel') }
|
|
</Button>
|
|
|
|
<Button
|
|
type={submitButtonType || 'primary'}
|
|
large
|
|
className="page-container__footer-button"
|
|
disabled={disabled}
|
|
onClick={e => onSubmit(e)}
|
|
>
|
|
{ submitText || this.context.t('next') }
|
|
</Button>
|
|
|
|
</div>
|
|
)
|
|
}
|
|
|
|
}
|