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.
39 lines
883 B
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,
|
|
}
|
|
|