mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-04-26 21:03:11 +00:00
17 lines
394 B
Svelte
17 lines
394 B
Svelte
<script lang='ts'>
|
|
import { Dialog as DialogPrimitive } from 'bits-ui'
|
|
|
|
import { cn } from '$lib/utils.js'
|
|
|
|
type $$Props = DialogPrimitive.DescriptionProps
|
|
|
|
let className: $$Props['class'] = ''
|
|
export { className as class }
|
|
</script>
|
|
|
|
<DialogPrimitive.Description
|
|
class={cn('text-muted-foreground text-sm', className)}
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</DialogPrimitive.Description>
|