flbxcup/resources/js/components/ui/drawer/drawer-footer.svelte
2025-06-23 23:12:40 +02:00

20 lines
440 B
Svelte

<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="drawer-footer"
class={cn("mt-auto flex flex-col gap-2", className)}
{...restProps}
>
{@render children?.()}
</div>