mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
add webln test page
This commit is contained in:
23
resources/views/vendor/wireui/components/badge.blade.php
vendored
Normal file
23
resources/views/vendor/wireui/components/badge.blade.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<span {{ $attributes }}>
|
||||
@if ($icon)
|
||||
<x-dynamic-component
|
||||
:component="WireUi::component('icon')"
|
||||
:name="$icon"
|
||||
class="{{ $iconSize }} shrink-0"
|
||||
/>
|
||||
@elseif (isset($prepend))
|
||||
<div {{ $prepend->attributes }}>{{ $prepend }}</div>
|
||||
@endif
|
||||
|
||||
{{ $label ?? $slot }}
|
||||
|
||||
@if ($rightIcon)
|
||||
<x-dynamic-component
|
||||
:component="WireUi::component('icon')"
|
||||
:name="$rightIcon"
|
||||
class="{{ $iconSize }} shrink-0"
|
||||
/>
|
||||
@elseif (isset($append))
|
||||
<div {{ $append->attributes }}>{{ $append }}</div>
|
||||
@endif
|
||||
</span>
|
||||
Reference in New Issue
Block a user