mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-27 23:41:21 +00:00
16 lines
380 B
Svelte
16 lines
380 B
Svelte
<script lang="ts">
|
|
import { Dialog as SheetPrimitive } from 'bits-ui';
|
|
import { cn } from '$lib/utils';
|
|
|
|
type $$Props = SheetPrimitive.TitleProps;
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<SheetPrimitive.Title
|
|
class={cn('text-lg font-semibold text-foreground', className)}
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</SheetPrimitive.Title>
|