{% sw_extends '@Storefront/storefront/utilities/icon.html.twig' %}
{% block utilities_icon %}
{# ... change icons without extending every block #}
{% set icons = [ 'search', 'heart', 'avatar', 'bag', 'star', 'star-half', 'arrow-head-left', 'arrow-head-right', 'arrow-head-up', 'arrow-head-down', 'breadcrumb-divider', 'arrow-medium-left', 'arrow-medium-double-left', 'arrow-medium-right', 'arrow-medium-double-right', 'checkmark-circle', 'blocked', 'arrow-up', 'x-highlight', 'marketing', 'checkmark', 'log-out' ] %}
{% if pack is not defined or (pack == 'solid' and name in icons) or pack == 'platinlux' %}
{% if name in icons or pack == 'platinlux' %}
{% set pack = 'platinlux' %}
{% set namespace = 'FourtwosixThemeCustomization' %}
{% endif %}
{% endif %}
{{ parent() }}
{% endblock %}