@props([
'icon' => null,
'heading',
'content' => null,
])
twMerge(['class' => 'flex items-start space-x-3 overflow-hidden']) }}>
@if ($icon)
@svg($icon, 'mt-0.5 size-5 text-gray-400 dark:text-gray-500', ['aria-hidden' => true])
@endif
{{ $heading }}
@if ($content)
{{ $content }}
@else
{{ $slot }}
@endif