You've already forked pages
forked from didirus/AstralRinth
15 lines
231 B
Svelte
15 lines
231 B
Svelte
<script lang="ts">
|
|
export let href: string;
|
|
</script>
|
|
|
|
<a {href}><slot /></a>
|
|
|
|
<style lang="postcss">
|
|
a {
|
|
color: var(--color-link);
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
</style> |