Files
MediaManager-maxdorninger-1/web/src/lib/components/ui/alert-dialog/alert-dialog-description.svelte
2025-12-06 22:39:09 +01:00

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}
/>