2026-01-02 11:12:29 +03:00
|
|
|
<script lang="ts">
|
2026-01-02 17:01:59 +03:00
|
|
|
import {
|
|
|
|
|
type WithElementRef,
|
|
|
|
|
cn,
|
|
|
|
|
} from '$shared/shadcn/utils/shadcn-utils.js';
|
2026-01-02 11:12:29 +03:00
|
|
|
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="dialog-footer"
|
|
|
|
|
class={cn('flex flex-col-reverse gap-2 sm:flex-row sm:justify-end', className)}
|
|
|
|
|
{...restProps}
|
|
|
|
|
>
|
|
|
|
|
{@render children?.()}
|
|
|
|
|
</div>
|