/** * External dependencies */ import { WooFooterItem } from '@woocommerce/admin-layout'; import { __ } from '@wordpress/i18n'; import { check, commentContent, lock } from '@wordpress/icons'; import { createInterpolateElement } from '@wordpress/element'; /** * Internal dependencies */ import './footer.scss'; import IconWithText from '../icon-with-text/icon-with-text'; import WooIcon from '../../assets/images/woo-icon.svg'; import { MARKETPLACE_URL } from '../constants'; const refundPolicyTitle = createInterpolateElement( __( '30 day money back guarantee', 'woocommerce' ), { // eslint-disable-next-line jsx-a11y/anchor-has-content a: , } ); const supportTitle = createInterpolateElement( __( 'Support teams across the world', 'woocommerce' ), { // eslint-disable-next-line jsx-a11y/anchor-has-content a: , } ); const paymentTitle = createInterpolateElement( __( 'Safe & Secure online payment', 'woocommerce' ), { // eslint-disable-next-line jsx-a11y/anchor-has-content a: , } ); function FooterContent(): JSX.Element { return (