@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
merge(['class' => 'dc-alert dc-alert--'.$tone]) }} role="{{ in_array($tone, ['warning','danger'], true) ? 'alert' : 'status' }}">
@if ($title) {{ $title }} @endif
{{ $slot }}