TempMonitor/src/lib/components/ui/dialog/dialog-description.svelte

13 lines
307 B
Svelte
Raw Normal View History

2025-05-18 13:18:46 +02:00
<script>
import { Dialog as DialogPrimitive } from "bits-ui";
import { cn } from "$lib/utils.js";
let { ref = $bindable(null), class: className, ...restProps } = $props();
</script>
<DialogPrimitive.Description
bind:ref
class={cn("text-sm text-muted-foreground", className)}
{...restProps}
/>