Files
MediaManager/web/src/lib/components/ui/drawer/drawer-header.svelte
2025-08-02 03:24:13 +02:00

21 lines
453 B
Svelte

<script lang="ts">
import type { WithElementRef } from "bits-ui";
import type { HTMLAttributes } from "svelte/elements";
import { cn } from "$lib/utils.js";
let {
ref = $bindable(null),
class: className,
children,
...restProps
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
</script>
<div
bind:this={ref}
class={cn("grid gap-1.5 p-4 text-center sm:text-left", className)}
{...restProps}
>
{@render children?.()}
</div>