mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-22 00:35:50 +02:00
17 lines
360 B
Svelte
17 lines
360 B
Svelte
<script lang="ts">
|
|
import { Dialog as DialogPrimitive } from 'bits-ui';
|
|
import { cn } from '$lib/utils.js';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: DialogPrimitive.TitleProps = $props();
|
|
</script>
|
|
|
|
<DialogPrimitive.Title
|
|
bind:ref
|
|
class={cn('text-lg leading-none font-semibold tracking-tight', className)}
|
|
{...restProps}
|
|
/>
|