Remove various icons from the wireui component library.

This commit is contained in:
HolgerHatGarKeineNode
2023-12-11 13:23:49 +01:00
parent 0c820be43b
commit 20c943d636
487 changed files with 0 additions and 3276 deletions

View File

@@ -1,23 +0,0 @@
<div class="{{ $cardClasses }}">
@if ($header)
{{ $header }}
@elseif ($title || $action)
<div class="{{ $headerClasses }}">
<h3 class="font-medium whitespace-normal text-md text-secondary-700 dark:text-secondary-400">{{ $title }}</h3>
@if ($action)
{{ $action }}
@endif
</div>
@endif
<div {{ $attributes->merge(['class' => "{$padding} text-secondary-700 rounded-b-xl grow dark:text-secondary-400"]) }}>
{{ $slot }}
</div>
@if ($footer)
<div class="{{ $footerClasses }}">
{{ $footer }}
</div>
@endif
</div>