13 lines
321 B
Svelte
13 lines
321 B
Svelte
|
<script>
|
||
|
import { Dialog as DialogPrimitive } from "bits-ui";
|
||
|
import { cn } from "$lib/utils.js";
|
||
|
|
||
|
let { ref = $bindable(null), class: className, ...restProps } = $props();
|
||
|
</script>
|
||
|
|
||
|
<DialogPrimitive.Title
|
||
|
bind:ref
|
||
|
class={cn("text-lg font-semibold leading-none tracking-tight", className)}
|
||
|
{...restProps}
|
||
|
/>
|