<?php
    $steps = $steps ?? [];
    $currentStep = $currentStep ?? 1;
?>

<div class="w-full py-4">
    <div class="flex items-center justify-center">
        <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php $__currentLoopData = $steps; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $step): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
            <?php
                $stepNumber = $index + 1;
                $isCompleted = $stepNumber < $currentStep;
                $isCurrent = $stepNumber === $currentStep;
                $isPending = $stepNumber > $currentStep;
            ?>

            
            <div class="flex items-center">
                <div class="flex flex-col items-center">
                    <div class="relative">
                        <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($isCompleted): ?>
                            
                            <div class="w-10 h-10 rounded-full bg-green-500 flex items-center justify-center">
                                <svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
                                </svg>
                            </div>
                        <?php elseif($isCurrent): ?>
                            
                            <div class="w-10 h-10 rounded-full border-2 border-3ip bg-white flex items-center justify-center">
                                <div class="w-3 h-3 rounded-full bg-3ip"></div>
                            </div>
                        <?php else: ?>
                            
                            <div class="w-10 h-10 rounded-full border-2 border-gray-300 bg-white"></div>
                        <?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
                    </div>
                    
                    <span class="mt-2 text-sm font-medium <?php echo e($isCurrent ? 'text-gray-900' : ($isCompleted ? 'text-gray-700' : 'text-gray-400')); ?>">
                        <?php echo e($step); ?>

                    </span>
                </div>

                
                <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($stepNumber < count($steps)): ?>
                    <div class="w-24 h-0.5  <?php echo e($isCompleted ? 'bg-green-500' : 'bg-gray-300'); ?>"></div>
                <?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
            </div>
        <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
    </div>
</div><?php /**PATH /var/www/html/resources/views/livewire/components/steps-partial.blade.php ENDPATH**/ ?>