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/send_/send-content/send-row-wrapper/send-row-wrapper.component.js

39 lines
883 B

import React, { Component } from 'react'
import PropTypes from 'prop-types'
import SendRowErrorMessage from './send-row-error-message/send-row-error-message.container'
export default class SendRowWrapper extends Component {
static propTypes = {
label: PropTypes.string,
showError: PropTypes.bool,
children: PropTypes.node,
errorType: PropTypes.string,
};
render () {
const {
label,
errorType = '',
showError = false,
children,
} = this.props
return (
<div className="send-v2__form-row">
<div className="send-v2__form-label">
{label}
(showError && <SendRowErrorMessage errorType={errorType}/>)
</div>
<div className="send-v2__form-field">
{children}
</div>
</div>
);
}
}
SendRowWrapper.contextTypes = {
t: PropTypes.func,
}