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.
52 lines
1.2 KiB
52 lines
1.2 KiB
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import classnames from 'classnames'
|
|
|
|
const ConfirmDetailRow = props => {
|
|
const {
|
|
label,
|
|
fiatFee,
|
|
ethFee,
|
|
onHeaderClick,
|
|
fiatFeeColor,
|
|
headerText,
|
|
headerTextClassName,
|
|
} = props
|
|
|
|
return (
|
|
<div className="confirm-detail-row">
|
|
<div className="confirm-detail-row__label">
|
|
{ label }
|
|
</div>
|
|
<div className="confirm-detail-row__details">
|
|
<div
|
|
className={classnames('confirm-detail-row__header-text', headerTextClassName)}
|
|
onClick={() => onHeaderClick && onHeaderClick()}
|
|
>
|
|
{ headerText }
|
|
</div>
|
|
<div
|
|
className="confirm-detail-row__fiat"
|
|
style={{ color: fiatFeeColor }}
|
|
>
|
|
{ fiatFee }
|
|
</div>
|
|
<div className="confirm-detail-row__eth">
|
|
{ `\u2666 ${ethFee}` }
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
ConfirmDetailRow.propTypes = {
|
|
label: PropTypes.string,
|
|
fiatFee: PropTypes.string,
|
|
ethFee: PropTypes.string,
|
|
fiatFeeColor: PropTypes.string,
|
|
onHeaderClick: PropTypes.func,
|
|
headerText: PropTypes.string,
|
|
headerTextClassName: PropTypes.string,
|
|
}
|
|
|
|
export default ConfirmDetailRow
|
|
|