# MD for: https://www.mercadopago.com.br/developers/pt/docs/checkout-bricks/wallet-brick/visual-customizations/change-texts.md \> CLIENT\_SIDE > > h1 > > Change texts Wallet Brick is composed of the button and the \*\*value proposition\*\* (\`valueProp\`), which can be customized according to the options provided by Mercado Pago. It is important to note that the choice of theme directly impacts the background color of the button, the value proposition, and the images inside the button. For more information, check \[Change appearance\](https://www.mercadopago.com.br/developers/en/docs/checkout-bricks/wallet-brick/visual-customizations/change-appearance). !\[wallet-brick-actioncomplement\](https://www.mercadopago.com.br/checkout-bricks/wallet-brick-actioncomplement-en-v1.png) Next, review all the possible texts for the content of the value proposition: | Option | Text | |--- | --- | |\`practicality\` | Use saved cards or your account balance | |\`convenience\_all\` | Installment with credit card or Installments without credit card of Mercado Pago | |\`security\_details\` | Protection for your data | |\`security\_safety\` (default) | Pay securely | |\`convenience\_credits\`| Up to 12 Installments without Card To use the \`convenience\_credits\` value prop, it is necessary for the Brick to be \[initialized with a preference\](https://www.mercadopago.com.br/developers/en/docs/checkout-bricks/wallet-brick/default-rendering), and the preference should have the purpose of \[onboarding\_credits\](https://www.mercadopago.com.br/developers/en/docs/checkout-bricks/wallet-brick/advanced-features/preferences).| |\`payment\_methods\_logos\` | The logos of the available payment methods will be displayed. To configure the payment methods, use the preference. It is recommended to \[initialize with a preference\](https://www.mercadopago.com.br/developers/en/docs/checkout-bricks/wallet-brick/default-rendering) using the value prop \`payment\_methods\_logos\`. If the preference has only one valid payment method, it will stop displaying images and will show the text: "\*\*Account money or installments with no card\*\*" | > WARNING > > Important > > If the value proposition is not specified, \`security\_safety\` will be chosen by default. In addition, when removing a payment method of \_ticket\_ ("paycash", for example) or \_ATM\_ ("banamex", for example) from preferences, all icons of payment points linked to these methods will not be displayed. * [javascript ](#editor%5F1) * [react-jsx ](#editor%5F2) javascript react-jsx ``` const settings = { ..., customization: { theme: 'default', customStyle: { valueProp: 'practicality', } } } ``` Copiar ``` const customization = { theme: 'default', customStyle: { valueProp: 'practicality', } }; ``` Copiar