16 lines
745 B
Twig
16 lines
745 B
Twig
<a href="{{ options.href }}" class="flex items-center space-x-2">
|
|
<span>{{ title|raw }}</span>
|
|
{%- if sorted -%}
|
|
{%- if direction == 'desc' -%}
|
|
<svg class="w-4 h-4 shrink-0" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path d="M3 4h13M3 8h9m-9 4h6m4 0l4-4m0 0l4 4m-4-4v12"></path>
|
|
</svg>
|
|
{%- else -%}
|
|
<svg class="w-4 h-4 shrink-0" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path d="M3 4h13M3 8h9m-9 4h9m5-4v12m0 0l-4-4m4 4l4-4"></path>
|
|
</svg>
|
|
{%- endif -%}
|
|
{%- endif -%}
|
|
</a>
|
|
|