mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
22 lines
489 B
Svelte
22 lines
489 B
Svelte
<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="sheet-header"
|
|
class={cn("flex flex-col gap-1.5 p-4", className)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</div>
|