mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2026-04-12 23:00:20 +00:00
17 lines
422 B
Svelte
17 lines
422 B
Svelte
|
|
<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>
|