File "index.tsx"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/cache/.wp-cli/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/policies/index.tsx
File size: 1.16 KB
MIME-type: text/html
Charset: utf-8

/**
 * External dependencies
 */
import { __ } from '@wordpress/i18n';
import {
	PRIVACY_URL,
	TERMS_URL,
	PRIVACY_PAGE_NAME,
	TERMS_PAGE_NAME,
} from '@woocommerce/block-settings';
import { decodeEntities } from '@wordpress/html-entities';

/**
 * Internal dependencies
 */
import './style.scss';

const Policies = (): JSX.Element => {
	return (
		<ul className="wc-block-components-checkout-policies">
			{ PRIVACY_URL && (
				<li className="wc-block-components-checkout-policies__item">
					<a
						href={ PRIVACY_URL }
						target="_blank"
						rel="noopener noreferrer"
					>
						{ PRIVACY_PAGE_NAME
							? decodeEntities( PRIVACY_PAGE_NAME )
							: __(
									'Privacy Policy',
									'woo-gutenberg-products-block'
							  ) }
					</a>
				</li>
			) }
			{ TERMS_URL && (
				<li className="wc-block-components-checkout-policies__item">
					<a
						href={ TERMS_URL }
						target="_blank"
						rel="noopener noreferrer"
					>
						{ TERMS_PAGE_NAME
							? decodeEntities( TERMS_PAGE_NAME )
							: __(
									'Terms and Conditions',
									'woo-gutenberg-products-block'
							  ) }
					</a>
				</li>
			) }
		</ul>
	);
};

export default Policies;