2023-02-02 14:00:37 +00:00
|
|
|
import React from 'react';
|
|
|
|
import {useProduct} from 'vtex.product-context';
|
|
|
|
|
2023-02-10 19:00:05 +00:00
|
|
|
const PaymentWithPix =() => {
|
2023-02-02 14:00:37 +00:00
|
|
|
|
|
|
|
const product = useProduct();
|
2023-02-10 19:00:05 +00:00
|
|
|
|
|
|
|
|
2023-02-03 19:03:10 +00:00
|
|
|
let imagePix = "https://agenciamagma.vtexassets.com/arquivos/pix-image-victor_souza.svg"
|
2023-02-02 14:00:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
return (
|
2023-02-10 19:00:05 +00:00
|
|
|
<div className="wrapperPix">
|
|
|
|
<img className="wrapperPixImage" src={imagePix} alt="Imagem do icone do pix" />
|
|
|
|
<div className="wrapperPrices">
|
|
|
|
<p className="wrapperTitle">{(product?.product?.priceRange.sellingPrice.highPrice || 0) * (0.9)}</p>
|
|
|
|
<p className="wrapperSubtitle">R$ 10 % de desconto</p>
|
2023-02-07 15:32:47 +00:00
|
|
|
</div>
|
2023-02-02 14:00:37 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2023-02-10 19:00:05 +00:00
|
|
|
export default PaymentWithPix;
|