@props(['value' => 0, 'label' => null, 'sub' => null, 'tone' => 'accent', 'size' => 'md']) @php $v = max(0, min(100, (float) $value)); $r = 34; $circ = 2 * M_PI * $r; $offset = $circ * (1 - $v / 100); $stroke = [ 'accent' => 'text-accent', 'online' => 'text-online', 'warning' => 'text-warning', 'offline' => 'text-offline', 'cyan' => 'text-cyan', ][$tone] ?? 'text-accent'; $box = $size === 'lg' ? 'h-24 w-24' : 'h-16 w-16'; $num = $size === 'lg' ? 'text-lg' : 'text-xs'; @endphp
{{ $label }}
@endif @if ($sub){{ $sub }}
@endif