add webln test page

This commit is contained in:
fsociety
2024-09-10 20:29:50 +02:00
parent 0260a61e7e
commit 2077cc9941
509 changed files with 5167 additions and 2240 deletions

View File

@@ -0,0 +1,7 @@
<div class="@if($separator) border-t border-secondary-200 dark:border-secondary-600 @endif">
<h6 {{ $attributes->merge(['class' => $classes]) }}>
{{ $label }}
</h6>
{{ $slot }}
</div>

View File

@@ -0,0 +1,15 @@
@if ($separator)
<div class="w-full my-1 border-t border-secondary-200 dark:border-secondary-600"></div>
@endif
<a {{ $attributes->merge(['class' => $getClasses()]) }}>
@if ($icon)
<x-dynamic-component
:component="WireUi::component('icon')"
:name="$icon"
class="w-5 h-5 mr-2"
/>
@endif
{{ $label ?? $slot }}
</a>