Bump welshman, add email rendering support

This commit is contained in:
Jon Staab
2026-05-06 13:47:30 -07:00
parent 6f731e48d2
commit 94db65b85e
5 changed files with 140 additions and 120 deletions
+12
View File
@@ -0,0 +1,12 @@
<script lang="ts">
import LinkRound from "@assets/icons/link-round.svg?dataurl"
import Icon from "@lib/components/Icon.svelte"
import Link from "@lib/components/Link.svelte"
export let value: string
</script>
<Link external href="mailto:{value}">
<Icon icon={LinkRound} size={3} />
{value}
</Link>