9 lines
521 B
PHP
9 lines
521 B
PHP
@props(['label' => ''])
|
|
<label style="display:flex;align-items:center;gap:10px;padding:7px 16px;cursor:pointer;user-select:none;
|
|
border-radius:0;transition:background .1s;"
|
|
onmouseover="this.style.background='var(--mw-bg3)'" onmouseout="this.style.background='transparent'">
|
|
<input {{ $attributes }} type="checkbox"
|
|
style="width:15px;height:15px;accent-color:var(--mw-v);cursor:pointer;flex-shrink:0;">
|
|
<span style="font-size:13px;color:var(--mw-t2);">{{ $label }}</span>
|
|
</label>
|