first
This commit is contained in:
commit
0738070ce1
287 changed files with 10116 additions and 0 deletions
12
src/lib/components/ui/dialog/dialog-description.svelte
Normal file
12
src/lib/components/ui/dialog/dialog-description.svelte
Normal file
|
@ -0,0 +1,12 @@
|
|||
<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}
|
||||
/>
|
Loading…
Add table
Add a link
Reference in a new issue