mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-10-27 08:21:30 +00:00
18 lines
398 B
Svelte
18 lines
398 B
Svelte
<script lang="ts">
|
|
import { AlertDialog as AlertDialogPrimitive } from 'bits-ui';
|
|
import { cn } from '$lib/components/ui/utils.js';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: AlertDialogPrimitive.TitleProps = $props();
|
|
</script>
|
|
|
|
<AlertDialogPrimitive.Title
|
|
bind:ref
|
|
data-slot="alert-dialog-title"
|
|
class={cn('text-lg font-semibold', className)}
|
|
{...restProps}
|
|
/>
|