oliverdavies.uk/source/_includes/button.html.twig
2025-04-15 21:22:21 +01:00

19 lines
909 B
Twig

{% set classes = [
'my-4 not-prose',
full_width ? 'flex' : 'inline-flex md:w-auto',
position == 'center' ? 'flex justify-center',
] -%}
<div class="{{ classes|join(' ') }}">
<a class="inline-flex gap-2 justify-center items-center py-3 px-6 w-full text-base font-medium text-white no-underline rounded-md duration-200 ease-in-out hover:bg-white focus:bg-white border-[2px] border-blue-primary bg-blue-primary transition-color dark:hover:border-white hover:text-blue-primary focus:text-blue-primary" href="{{ url }}">
<span>
{{ text|raw }}
</span>
<span>
<svg class="size-3" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M17.25 8.25 21 12m0 0-3.75 3.75M21 12H3" />
</svg>
</span>
</a>
</div>