@props([
    'collapsible' => false,
    'description' => null,
    'label' => null,
    'start' => null,
    'title',
])
class([
            'fi-ta-group-header flex w-full items-center gap-x-3 bg-gray-50 px-3 py-2 dark:bg-white/5',
            'cursor-pointer' => $collapsible,
        ])
    }}
>
    {{ $start }}
    
        
            @if (filled($label))
                {{ $label }}:
            @endif
            {{ $title }}
        
        @if (filled($description))
            
                {{ $description }}
            
        @endif
    
 
    @if ($collapsible)
        
    @endif