mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-17 15:43:28 +02:00
17 lines
372 B
Svelte
17 lines
372 B
Svelte
<script lang="ts">
|
|
import { AlertDialog as AlertDialogPrimitive } from 'bits-ui';
|
|
import { cn } from '$lib/utils.js';
|
|
|
|
let {
|
|
class: className,
|
|
ref = $bindable(null),
|
|
...restProps
|
|
}: AlertDialogPrimitive.DescriptionProps = $props();
|
|
</script>
|
|
|
|
<AlertDialogPrimitive.Description
|
|
bind:ref
|
|
class={cn('text-sm text-muted-foreground', className)}
|
|
{...restProps}
|
|
/>
|