21 lines
629 B
Twig
21 lines
629 B
Twig
{% set warning = warning ?? false %}
|
|
{% set method = method ?? 'get' %}
|
|
<button type="button"
|
|
class="{{ html_classes('block px-4 py-2 text-sm w-full text-left', {
|
|
'text-red-500 hover:text-primary': warning,
|
|
'text-gray-700 hover:text-primary': not warning
|
|
}) }}"
|
|
role="menuitem"
|
|
tabindex="-1"
|
|
{{ attributes
|
|
.defaults({
|
|
'hx-target': 'body',
|
|
'hx-swap': 'beforeend',
|
|
})
|
|
.without('url', 'warning', 'method')
|
|
}}
|
|
hx-{{ method | lower }}="{{ url }}"
|
|
>
|
|
{{ block('content') }}
|
|
</button>
|