This commit is contained in:
nub31
2026-03-16 22:00:24 +01:00
parent d677582757
commit 3bf281c7a7
41 changed files with 1790 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
<script lang="ts">
import { twMerge } from 'tailwind-merge';
export let href: string;
</script>
<a
{...$$restProps}
{href}
class={twMerge(
'font-medium transition-colors hover:text-accent hover:underline',
$$restProps['class']
)}
>
<slot />
</a>