mirror of
https://github.com/apricote/ein-pfeil-am-rechten-fleck.de.git
synced 2026-01-13 13:01:02 +00:00
14 lines
275 B
Svelte
14 lines
275 B
Svelte
<script lang="ts">
|
|
export let href: string;
|
|
export let text: string;
|
|
</script>
|
|
|
|
<li class="block w-1/2 bg-amber-800">
|
|
<a
|
|
class="text-gray-300 hover:text-amber-200 focus:text-amber-200 focus:outline-none transition"
|
|
alt=""
|
|
{href}
|
|
>
|
|
{text}
|
|
</a>
|
|
</li>
|