22 lines
470 B
Svelte
22 lines
470 B
Svelte
<script lang="ts">
|
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
import { cn, type WithElementRef } from '$lib/components/ui/utils.js';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
children,
|
|
...restProps
|
|
}: WithElementRef<HTMLAttributes<HTMLElement>> = $props();
|
|
</script>
|
|
|
|
<div
|
|
bind:this={ref}
|
|
data-slot="sidebar-footer"
|
|
data-sidebar="footer"
|
|
class={cn('flex flex-col gap-2 p-3', className)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</div>
|