@aware(['component'])
@props(['row', 'rowIndex'])
@php
    $attributes = $attributes->merge(['wire:key' => 'row-'.$rowIndex.'-'.$component->id]);
    $theme = $component->getTheme();
    $customAttributes = $this->getTrAttributes($row, $rowIndex);
@endphp
@if ($theme === 'tailwind')
    
reorderIsEnabled() && $component->currentlyReorderingIsEnabled())
            wire:sortable.item="{{ $row->getKey() }}"
        @endif
        {{
            $attributes->merge($customAttributes)
                ->class(['bg-white dark:bg-gray-700 dark:text-white' => ($customAttributes['default'] ?? true) && $rowIndex % 2 === 0])
                ->class(['bg-gray-50 dark:bg-gray-600 dark:text-white' => ($customAttributes['default'] ?? true) && $rowIndex % 2 !== 0])
                ->class(['cursor-pointer' => $component->hasTableRowUrl()])
                ->except('default')
        }}
    >
        {{ $slot }}
    
@elseif ($theme === 'bootstrap-4' || $theme === 'bootstrap-5')
    reorderIsEnabled() && $component->currentlyReorderingIsEnabled())
            wire:sortable.item="{{ $row->getKey() }}"
        @endif
        {{
            $attributes->merge($customAttributes)
                ->class(['' => ($customAttributes['default'] ?? true) && $rowIndex % 2 === 0])
                ->class(['' => ($customAttributes['default'] ?? true) && $rowIndex % 2 !== 0])
                ->except('default')
        }}
    >
        {{ $slot }}
    
@endif