blob: 0b122e0b1991bb0db399ddcce32d576ecb306188 [file] [log] [blame]
Skyler Grey22205e62023-08-06 15:20:25 +00001<script lang="ts">
2 import { cn } from "$lib/utils";
3
4 let className: string | undefined | null = undefined;
5 export { className as class };
6
7 export let tag: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" = "h3";
8</script>
9
10<svelte:element
11 this={tag}
12 class={cn("text-lg font-semibold leading-none tracking-tight", className)}
13 {...$$restProps}
14>
15 <slot />
16</svelte:element>