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, divider: PropTypes.bool, }; render() { const { title, children, className, divider = false } = this.props; return (