@props([ 'eyebrow' => null, 'title' => null, 'description' => null, 'titleTag' => 'h2', 'size' => 'md', ]) @php $sizeClass = $size === 'sm' ? 'text-lg font-extrabold tracking-[-0.04em] sm:text-xl' : 'text-2xl font-extrabold tracking-[-0.05em]'; $wrapperClass = trim((string) $slot) !== '' ? 'flex flex-wrap items-end justify-between gap-4' : 'space-y-2'; @endphp
@if ($eyebrow)
{{ $eyebrow }}
@endif @if ($title) @if ($titleTag === 'h1')

{{ $title }}

@elseif ($titleTag === 'h3')

{{ $title }}

@else

{{ $title }}

@endif @endif @if ($description)

{{ $description }}

@endif
@if (trim((string) $slot) !== '')
{{ $slot }}
@endif