/** * External dependencies */ import { __ } from '@wordpress/i18n'; import PropTypes from 'prop-types'; /** * Internal dependencies */ import TotalsItem from '../totals-item'; const TotalsTaxesItem = ( { currency, values } ) => { const { total_tax: totalTax } = values; return ( ); }; TotalsTaxesItem.propTypes = { currency: PropTypes.object.isRequired, values: PropTypes.shape( { total_tax: PropTypes.string, } ).isRequired, }; export default TotalsTaxesItem;