@props([ 'icon' => 'info', 'title' => '', 'description' => '', 'color' => 'primary', ]) @php $colorMap = [ 'primary' => 'bg-primary-dim text-primary', 'success' => 'bg-success-dim text-success', 'warning' => 'bg-warning-dim text-warning', 'info' => 'bg-info-dim text-info', 'danger' => 'bg-danger-dim text-danger', ]; $iconClasses = $colorMap[$color] ?? $colorMap['primary']; @endphp
@if($title)
{{ $title }}
@endif @if($description)

{{ $description }}

@endif