mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-19 14:54:13 +02:00
17 lines
396 B
Svelte
17 lines
396 B
Svelte
<script lang="ts">
|
|
import {Dialog as SheetPrimitive} from "bits-ui";
|
|
import {cn} from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: SheetPrimitive.DescriptionProps = $props();
|
|
</script>
|
|
|
|
<SheetPrimitive.Description
|
|
{...restProps}
|
|
bind:ref
|
|
class={cn("text-muted-foreground text-sm", className)}
|
|
/>
|