mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
18 lines
424 B
Svelte
18 lines
424 B
Svelte
<script lang="ts">
|
|
import { Separator } from "$lib/components/ui/separator/index.js";
|
|
import { cn } from "$lib/utils/ui.js";
|
|
import type { ComponentProps } from "svelte";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: ComponentProps<typeof Separator> = $props();
|
|
</script>
|
|
|
|
<Separator
|
|
bind:ref
|
|
data-sidebar="separator"
|
|
class={cn("bg-sidebar-border mx-2 w-auto", className)}
|
|
{...restProps}
|
|
/>
|