summaryrefslogtreecommitdiff
path: root/src/lib/components/Link.svelte
blob: 97f976f47eb048f169366f49d738a696815ac7d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<script lang="ts">
  const { href, children }: { href: string; children: any } = $props();
</script>

<a
  class="text-accent hover:bg-accent hover:text-accent-content
  selection:bg-accent! selection:text-accent-content!"
  {href}
  target="_blank">{@render children()}</a
>