/** * External dependencies */ import { registerPaymentMethod } from '@woocommerce/blocks-registry'; import { __ } from '@wordpress/i18n'; import { getSetting } from '@woocommerce/settings'; import { decodeEntities } from '@wordpress/html-entities'; /** * Internal dependencies */ import { PAYMENT_METHOD_NAME } from './constants'; const settings = getSetting( 'cheque_data', {} ); const defaultLabel = __( 'Check payment', 'woo-gutenberg-products-block' ); const label = decodeEntities( settings.title ) || defaultLabel; /** * Content component */ const Content = () => { return decodeEntities( settings.description || '' ); }; /** * Label component * * @param {*} props Props from payment API. */ const Label = ( props ) => { const { PaymentMethodLabel } = props.components; return ; }; /** * Cheque payment method config object. */ const offlineChequePaymentMethod = { name: PAYMENT_METHOD_NAME, label: