26 lines
551 B
Svelte
26 lines
551 B
Svelte
<script lang="ts">
|
|
import type { WithElementRef } from "bits-ui";
|
|
import type { HTMLAttributes } from "svelte/elements";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
level = 3,
|
|
children,
|
|
...restProps
|
|
}: WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
level?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
} = $props();
|
|
</script>
|
|
|
|
<div
|
|
role="heading"
|
|
aria-level={level}
|
|
bind:this={ref}
|
|
class={cn("text-2xl font-semibold leading-none tracking-tight", className)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</div>
|