Files
lucent-laravel/front/views/components/dropdown.blade.php
T
lexx 5ed57838fc WIP moving to vanilla js from svelte
Editing record edit and i am in the middle of creating the dropdown component
2024-09-27 23:58:32 +03:00

13 lines
276 B
PHP

<div class="dropdown">
<button
class="button dropdown-button"
type="button"
aria-expanded="false"
>
{{$slot}}
</button>
<div class="dropdown-menu hide orientation-{orientation}">
{{$items}}
</div>
</div>