You've already forked AstralRinth
forked from didirus/AstralRinth
11 lines
149 B
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> |