@props([ 'tone' => 'info', // info | success | warning | danger 'title' => null, 'icon' => null, ]) @php $iconName = $icon ?? match ($tone) { 'success' => 'check', 'danger' => 'alert', 'warning' => 'alert', default => 'alert', }; @endphp