Files

11 lines
304 B
Twig

{% set warning = warning ?? false %}
<a href="{{ url }}"
class="{{ html_classes('block px-4 py-2 text-sm w-full', {
'text-red-500 hover:text-primary': warning,
'text-gray-700 hover:text-primary': not warning
}) }}"
role="menuitem"
tabindex="-1">
{{ block('content') }}
</a>