mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-28 00:35:14 +02:00
35 lines
1.1 KiB
Svelte
35 lines
1.1 KiB
Svelte
<script lang="ts">
|
|
import {cn} from '$lib/utils.js';
|
|
import type {WithElementRef} from 'bits-ui';
|
|
import type {Snippet} from 'svelte';
|
|
import type {HTMLAttributes} from 'svelte/elements';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
children,
|
|
child,
|
|
class: className,
|
|
...restProps
|
|
}: WithElementRef<HTMLAttributes<HTMLElement>> & {
|
|
child?: Snippet<[{ props: Record<string, unknown> }]>;
|
|
} = $props();
|
|
|
|
const mergedProps = $derived({
|
|
class: cn(
|
|
'text-sidebar-foreground/70 ring-sidebar-ring flex h-8 shrink-0 items-center rounded-md px-2 text-xs font-medium outline-none transition-[margin,opa] duration-200 ease-linear focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0',
|
|
'group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0',
|
|
className
|
|
),
|
|
'data-sidebar': 'group-label',
|
|
...restProps
|
|
});
|
|
</script>
|
|
|
|
{#if child}
|
|
{@render child({props: mergedProps})}
|
|
{:else}
|
|
<div bind:this={ref} {...mergedProps}>
|
|
{@render children?.()}
|
|
</div>
|
|
{/if}
|