Finish space create form

This commit is contained in:
Jon Staab
2024-08-08 16:32:46 -07:00
parent 6c2e5d6e07
commit 028ff71e8f
18 changed files with 258 additions and 17 deletions
+15
View File
@@ -0,0 +1,15 @@
<script lang="ts">
import cx from 'classnames'
export let href
export let external = false
</script>
<a
{href}
{...$$props}
class={cx($$props.class, "cursor-pointer underline text-primary")}
rel={external ? "noopener noreferer" : ""}
target={external ? "_blank" : ""}>
<slot />
</a>