This commit is contained in:
Sam 2023-03-09 17:08:43 +01:00
commit 90205a1243
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
29 changed files with 3216 additions and 0 deletions

View file

@ -0,0 +1,12 @@
<script lang="ts">
export let href: string;
export let plain: boolean = false;
</script>
{#if plain}
<a {href} class="hover:text-sky-500 dark:hover:text-sky-400"><slot /></a>
{:else}
<li>
<a {href} class="hover:text-sky-500 dark:hover:text-sky-400"><slot /></a>
</li>
{/if}