# MD for: https://www.mercadopago.com.pe/developers/en/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.pe/developers/en/docs/checkout-bricks/wallet-brick/visual-customizations/change-appearance). !\[wallet-brick-actioncomplement\](https://www.mercadopago.com.pe/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 | |\`security\_details\` | Protection for your data | |\`security\_safety\` (default) | Pay securely | |\`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.pe/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: "\*\*With account money\*\*". | > WARNING > > Important > > If the value proposition is not specified, \`security\_safety\` will be chosen by default. * [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