mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-05 09:52:54 +00:00
14 lines
390 B
Svelte
14 lines
390 B
Svelte
![]() |
<script lang="ts">
|
||
|
import { Dialog as SheetPrimitive } from "bits-ui";
|
||
|
import { cn } from "$lib/utils.js";
|
||
|
|
||
|
type $$Props = SheetPrimitive.DescriptionProps;
|
||
|
|
||
|
let className: $$Props["class"] = undefined;
|
||
|
export { className as class };
|
||
|
</script>
|
||
|
|
||
|
<SheetPrimitive.Description class={cn("text-sm text-muted-foreground", className)} {...$$restProps}>
|
||
|
<slot />
|
||
|
</SheetPrimitive.Description>
|