@props([ 'title', 'value', 'description' => null, 'variant' => 'default', ]) @php $variants = [ 'default' => 'bg-white text-gray-900 ring-gray-200/80', 'brand' => 'bg-brand-900 text-white ring-brand-800', 'accent' => 'bg-amber-50 text-amber-950 ring-amber-200/80', 'muted' => 'bg-slate-50 text-gray-800 ring-gray-200/80', ]; $v = $variants[$variant] ?? $variants['default']; @endphp
{{ $title }}
{{ $value }}
@if ($description){{ $description }}
@endif