{% import "@SyliusShop/Common/Macro/icons.html.twig" as icons %}
{{ 'sylius.ui.shipment'|trans }}
{% for shipment in order.shipments %} {% set state = shipment.state %}
{{ icons.transport('fs-2 text-gray-500') }}
{{ shipment.method }}
{% if state != 'cart' %}

{% include "@SyliusShop/Common/Order/Label/ShipmentState/singleShipmentState.html.twig" with {state} %}

{% endif %}
{% endfor %}