/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { decodeEntities } from '@wordpress/html-entities'; export const ShippingVia = ( { selectedShippingRates, }: { selectedShippingRates: string[]; } ): JSX.Element => { return (
{ __( 'via', 'woo-gutenberg-products-block' ) }{ ' ' } { decodeEntities( selectedShippingRates.join( ', ' ) ) }
); };