mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-06 04:22:07 +00:00
7 lines
130 B
Svelte
7 lines
130 B
Svelte
<script lang="ts">
|
|
export let href: string;
|
|
export let title: string;
|
|
</script>
|
|
|
|
<a class="aw-link" {href} {title}><slot /></a>
|