mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-05-01 03:21:21 +00:00
13 lines
387 B
Svelte
13 lines
387 B
Svelte
<script lang="ts">
|
|
import { Dialog as SheetPrimitive } from 'bits-ui';
|
|
import { cn } from '$lib/utils';
|
|
|
|
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>
|