🎨 Add dialog UI component

This commit is contained in:
pheralb
2025-08-21 11:58:55 +01:00
parent 313a34cd00
commit 809d763841
9 changed files with 197 additions and 0 deletions
@@ -0,0 +1,24 @@
<script lang="ts">
import type { HTMLAttributes } from "svelte/elements";
import type { WithElementRef } from "@/types/components";
import { cn } from "@/utils/cn";
let {
ref = $bindable(null),
class: className,
children,
...restProps
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
</script>
<div
bind:this={ref}
data-slot="dialog-footer"
class={cn(
"flex flex-col-reverse gap-2 sm:flex-row sm:justify-end",
className,
)}
{...restProps}
>
{@render children?.()}
</div>