mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
Remove various icons from the wireui component library.
This commit is contained in:
@@ -1,50 +0,0 @@
|
||||
<div>
|
||||
<label for="{{ $id }}" class="flex items-center {{ $errors->has($name) ? 'text-negative-600':'' }}">
|
||||
<div class="relative flex items-start">
|
||||
@if ($leftLabel)
|
||||
<div class="mr-2 text-sm text-right">
|
||||
<x-dynamic-component
|
||||
:component="WireUi::component('label')"
|
||||
class=""
|
||||
:for="$id"
|
||||
:label="$leftLabel"
|
||||
:has-error="$errors->has($name)"
|
||||
/>
|
||||
@if($description)
|
||||
<div class="text-gray-500">{{ $description }}</div>
|
||||
@endif
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="flex items-center h-5">
|
||||
<input {{ $attributes->class([
|
||||
$getClasses($errors->has($name)),
|
||||
])->merge([
|
||||
'type' => 'checkbox',
|
||||
]) }} />
|
||||
</div>
|
||||
|
||||
@if ($label)
|
||||
<div class="ml-2 text-sm">
|
||||
<x-dynamic-component
|
||||
:component="WireUi::component('label')"
|
||||
class=""
|
||||
:for="$id"
|
||||
:label="$label"
|
||||
:has-error="$errors->has($name)"
|
||||
/>
|
||||
@if($description)
|
||||
<div id="{{ $id }} . comments-description" class="text-gray-500">{{ $description }}</div>
|
||||
@endif
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
</label>
|
||||
|
||||
@if ($name)
|
||||
<x-dynamic-component
|
||||
:component="WireUi::component('error')"
|
||||
:name="$name"
|
||||
/>
|
||||
@endif
|
||||
</div>
|
||||
Reference in New Issue
Block a user