@props(['label', 'value', 'unit' => null, 'tone' => 'ink', 'icon' => null, 'pct' => null]) @php $valueColor = [ 'ink' => 'text-ink', 'online' => 'text-online', 'warning' => 'text-warning', 'offline' => 'text-offline', 'accent' => 'text-accent-text', 'cyan' => 'text-cyan-bright', ][$tone] ?? 'text-ink'; $barColor = [ 'ink' => 'bg-accent', 'online' => 'bg-online', 'warning' => 'bg-warning', 'offline' => 'bg-offline', 'accent' => 'bg-accent', 'cyan' => 'bg-cyan', ][$tone] ?? 'bg-accent'; @endphp
merge(['class' => 'rounded-lg border border-line bg-surface p-4 shadow-panel']) }}>

{{ $label }}

@if ($icon) @endif

{{ $value }} @if ($unit) {{ $unit }} @endif

@if (! is_null($pct))
@endif