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/transaction-breakdown/transaction-breakdown-row/transaction-breakdown-row.c...

27 lines
679 B

import React, { PureComponent } from 'react'
import PropTypes from 'prop-types'
import classnames from 'classnames'
export default class TransactionBreakdownRow extends PureComponent {
static propTypes = {
title: PropTypes.string,
children: PropTypes.node,
className: PropTypes.string,
}
render () {
const { title, children, className } = this.props
return (
<div className={classnames('transaction-breakdown-row', className)}>
<div className="transaction-breakdown-row__title">
{ title }
</div>
<div className="transaction-breakdown-row__value">
{ children }
</div>
</div>
)
}
}