<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

// phpcs:disable Magento2.Files.LineLength

?>
<?php
/**
 * Mustishipping state
 *
 * @see \Magento\Multishipping\Block\Checkout\State
 */
?>
<ol class="block multicheckout progress items" id="checkout-progress-state">
    <?php foreach ($block->getSteps() as $_step) : ?>
        <li title="<?= $block->escapeHtmlAttr($_step->getLabel()) ?>" class="item<?= ($_step->getIsActive()) ? ' active' : '' ?>">
            <span><?= $block->escapeHtml($_step->getLabel()) ?></span>
        </li>
    <?php endforeach; ?>
</ol>
