/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { DISPLAY_CART_PRICES_INCLUDING_TAX } from '@woocommerce/block-settings'; import { __experimentalCreateInterpolateElement } from 'wordpress-element'; import FormattedMonetaryAmount from '@woocommerce/base-components/formatted-monetary-amount'; import PropTypes from 'prop-types'; /** * Internal dependencies */ import TotalsItem from '../totals-item'; import './style.scss'; const TotalsFooterItem = ( { currency, values } ) => { const { total_price: totalPrice, total_tax: totalTax } = values; return ( { __experimentalCreateInterpolateElement( __( 'Including in taxes', 'woo-gutenberg-products-block' ), { TaxAmount: ( ), } ) }

) } /> ); }; TotalsFooterItem.propTypes = { currency: PropTypes.object.isRequired, values: PropTypes.shape( { total_price: PropTypes.string, total_tax: PropTypes.string, } ).isRequired, }; export default TotalsFooterItem;