1
0
Files
AstralRinth/src/lib/components/Link.svelte

11 lines
149 B
Svelte

<script lang="ts">
export let href: string;
</script>
<a {href}><slot /></a>
<style lang="postcss">
a {
color: blue;
}
</style>