# MD for: https://www.mercadopago.com.ar/developers/pt/docs/checkout-bricks/brand-brick/settings/default-rendering.md \# Value prop The textual content displayed within the banner and pop-up depends on the choice of a \*\*value prop\*\*. There are five available value propositions for use, and each one enables specific customizations. The table below shows how each value proposition impacts the messages displayed in the banner: | Value prop | Message on the banner| |---|---| |\`payment\_methods\` (default)| Logo Mercado Pago + "Pay by \[payment method\] or with your account money on Mercado Pago. Learn more" (link para pop-up)| |\`payment\_methods\_logos\`|Logos + "Available payment methods with Mercado Pago. Learn more" (link para pop-up)| |\`installments\`|Logo Mercado Pago + "Up to 12 interest-free installments with Mercado Pago. Learn more" (link para pop-up)| |\`security\`|Logo Mercado Pago + "Pay safely with Mercado Pago"| |\`credits\`|Logo Mercado Pago + "Up to 12 installments without cards through Mercado Pago. Learn more" (link para pop-up)| Customizations are passed to Brick through the object below, which must be sent as a third parameter in the \`create()\` method. * [javascript ](#editor%5F1) * [react-jsx ](#editor%5F2) javascript react-jsx ``` const settings = { customization: { text: { valueProp: "payment_methods", // optional "installments" | "payment_methods" | "security" | "payment_methods_logos" | "credits" }, }, }; ``` Copiar ``` const customization = { text: { valueProp: "payment_methods", // optional "installments" | "payment_methods" | "security" | "payment_methods_logos" | "credits" }, }; ``` Copiar