Populate feeds with default accounts

This commit is contained in:
Jon Staab
2024-10-11 15:29:54 -07:00
parent e21063f247
commit f5461d551e
6 changed files with 30 additions and 17 deletions
+5 -3
View File
@@ -1,15 +1,17 @@
<script lang="ts">
import cx from "classnames"
import {goto} from '$app/navigation'
export let href
export let external = false
const go = () => goto(href)
</script>
<a
{href}
{...$$props}
on:click|stopPropagation
class={cx($$props.class, "cursor-pointer")}
class="cursor-pointer {$$props.class}"
on:click|preventDefault|stopPropagation={go}
rel={external ? "noopener noreferer" : ""}
target={external ? "_blank" : ""}>
<slot />