8 lines
166 B
Svelte
8 lines
166 B
Svelte
<script lang="ts">
|
|
export let href;
|
|
|
|
let target = href.includes('https://') || href.includes('http://') ? '_blank' : '';
|
|
</script>
|
|
|
|
<a {href} {target}><slot /></a>
|