@props([ 'value' => 0, 'max' => 100, 'colorZones' => true, 'label' => '', 'size' => 'md', 'showValue' => true, 'animate' => true, ]) @php $pct = min(100, max(0, ($value / max(1, $max)) * 100)); $color = $colorZones ? ($pct >= 75 ? 'bg-green-500' : ($pct >= 50 ? 'bg-amber-500' : 'bg-red-500')) : 'bg-primary-600'; $sizeMap = ['sm' => 'h-1.5', 'md' => 'h-2.5', 'lg' => 'h-4']; $height = $sizeMap[$size] ?? $sizeMap['md']; @endphp