mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-04 15:14:29 +01:00
23 lines
640 B
JavaScript
23 lines
640 B
JavaScript
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>
|
|
);
|
|
}
|
|
}
|