bea settings
Build and Push Docker Image / build (push) Successful in 54s

This commit is contained in:
2026-08-27 18:15:22 +02:00
parent 367f34229c
commit 57b38fe2c7
36 changed files with 1159 additions and 328 deletions
@@ -0,0 +1,15 @@
<script lang="ts">
import { cn, type WithElementRef } from '$lib/utils.js';
import type { HTMLAttributes } from 'svelte/elements';
let {
ref = $bindable(null),
class: className,
children,
...restProps
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
</script>
<div bind:this={ref} data-slot="popover-title" class={cn('font-medium', className)} {...restProps}>
{@render children?.()}
</div>