13 lines
465 B
PHP
13 lines
465 B
PHP
|
@props([
|
||
|
'transparent' => false,
|
||
|
'compact' => config('bladewind.list_view.compact', false),
|
||
|
'class' => '',
|
||
|
])
|
||
|
@php
|
||
|
$transparent = parseBladewindVariable($transparent);
|
||
|
$compact = parseBladewindVariable($compact);
|
||
|
@endphp
|
||
|
<ul role="list"
|
||
|
class="@if(!$transparent)bg-white dark:bg-transparent @endif divide-y divide-slate-200/90 dark:divide-dark-600/50 rounded-tl-lg rounded-tr-lg rounded-br-lg rounded-bl-lg {{$class}}">
|
||
|
{{ $slot }}
|
||
|
</ul>
|