Adding thirdparty Payment Icon in Footer for Shopify 2.0 (Broadcast theme)

I would like to add payment icons in the Footer.I have third party payment integration(PhonePe) with my Shopify 2.0(Broadcast theme) store which doesn’t show payment icon by default. I followed another thread having the same question but it is not applicable for Shopify 2.0.

https://community.shopify.com/topic/1773013

For your info, I am not able to see any text called ‘payment’ in ‘footer.liquid’ but i have below snippet in section-‘supporting-menu.liquid’

{%- if section.settings.footer_payment_enable -%}
      {%- unless shop.enabled_payment_types == empty -%}
        
          

            {%- for type in shop.enabled_payment_types -%}
              - {{ type | payment_type_svg_tag: class: 'payment-icon' }}
            {%- endfor -%}
          

        

      {%- endunless -%}
    {%- endif -%}

I would like to add these icons with text like ‘Your payment is secure with us’.

Appreciate your help on this