Files
gpx.studio/website/src/lib/components/ui/alert-dialog/alert-dialog-description.svelte

17 lines
422 B
Svelte
Raw Normal View History

2024-07-15 13:19:56 +02:00
<script lang="ts">
import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
import { cn } from "$lib/utils.js";
type $$Props = AlertDialogPrimitive.DescriptionProps;
let className: $$Props["class"] = undefined;
export { className as class };
</script>
<AlertDialogPrimitive.Description
class={cn("text-sm text-muted-foreground", className)}
{...$$restProps}
>
<slot />
</AlertDialogPrimitive.Description>