2026-01-01 13:12:57 +03:00
|
|
|
<script lang="ts">
|
2026-01-02 11:11:04 +03:00
|
|
|
import { Separator } from '$shared/shadcn/separator/index.js';
|
2026-01-01 14:37:18 +03:00
|
|
|
import { cn } from '$shared/shadcn/utils/shadcn-utils.js';
|
2026-01-01 13:12:57 +03:00
|
|
|
import type { ComponentProps } from 'svelte';
|
|
|
|
|
|
|
|
|
|
let {
|
|
|
|
|
ref = $bindable(null),
|
|
|
|
|
class: className,
|
|
|
|
|
...restProps
|
|
|
|
|
}: ComponentProps<typeof Separator> = $props();
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<Separator
|
|
|
|
|
bind:ref
|
|
|
|
|
data-slot="sidebar-separator"
|
|
|
|
|
data-sidebar="separator"
|
|
|
|
|
class={cn('bg-sidebar-border', className)}
|
|
|
|
|
{...restProps}
|
|
|
|
|
/>
|