Rework modal header structure

This commit is contained in:
Jon Staab
2026-02-02 10:09:14 -08:00
parent 4480132c74
commit fb2d78fd57
55 changed files with 224 additions and 287 deletions
+11
View File
@@ -0,0 +1,11 @@
<script lang="ts">
import type {Snippet} from "svelte"
interface Props {
children: Snippet
}
const {children}: Props = $props()
</script>
<h1 class="heading">{@render children()}</h1>