Hello would like to know how we change the basics icons that are given to icon i want to add. (Impulse theme)
You can make these changes in the text-with-icons.liquid file, or whatever name the liquid file is in. You will most likely see a reference to svg/image files provided by Shopify, which you can comment out or remove and replace with your own icons.
Was this clear?
I’m also trying to do this and the path for the icon SVG is not a normal path.
{% for block in section.blocks %}
{% case block.settings.icon %}
{% when 'bills'%}
{% when 'calendar'%}
{% when 'cart'%}
{% when 'charity'%}
{% when 'chat'%}
{% when 'envelope'%}
{% when 'gears'%}
{% when 'gift'%}
{% when 'globe'%}
{% when 'package'%}
{% when 'phone'%}
{% when 'plant'%}
{% when 'recycle'%}
{% when 'ribbon'%}
{% when 'sales-tag'%}
{% when 'shield'%}
{% when 'stopwatch'%}
{% when 'store'%}
{% when 'thumbs-up'%}
{% when 'trophy'%}
{% when 'truck'%}
{% when 'wallet'%}
{% endcase %}
