@aware(['component'])
@props(['customAttributes' => []])
@php
$theme = $component->getTheme();
@endphp
@if ($theme === 'tailwind')
merge($customAttributes)
->class(['bg-white dark:bg-gray-700 dark:text-white' => $customAttributes['default'] ?? true])
->except('default')
}}>
{{ $slot }}
@elseif ($theme === 'bootstrap-4' || $theme === 'bootstrap-5')
merge($customAttributes)
->class(['' => $customAttributes['default'] ?? true])
->except('default')
}}>
{{ $slot }}
@endif