mirror of
https://github.com/imputnet/cobalt.git
synced 2025-06-29 01:48:28 +00:00
8 lines
135 B
Svelte
8 lines
135 B
Svelte
<script lang="ts">
|
|
export let href: string;
|
|
</script>
|
|
|
|
<a target="_blank" rel="noopener noreferrer" {href}>
|
|
<slot></slot>
|
|
</a>
|