install
This commit is contained in:
22
resources/views/vendor/filament/components/tabs/index.blade.php
vendored
Normal file
22
resources/views/vendor/filament/components/tabs/index.blade.php
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
@props([
|
||||
'contained' => false,
|
||||
'label' => null,
|
||||
'vertical' => false,
|
||||
])
|
||||
|
||||
<nav
|
||||
{{
|
||||
$attributes
|
||||
->merge([
|
||||
'aria-label' => $label,
|
||||
'role' => 'tablist',
|
||||
])
|
||||
->class([
|
||||
'fi-tabs',
|
||||
'fi-contained' => $contained,
|
||||
'fi-vertical' => $vertical,
|
||||
])
|
||||
}}
|
||||
>
|
||||
{{ $slot }}
|
||||
</nav>
|
||||
Reference in New Issue
Block a user