13 lines
351 B
Svelte
13 lines
351 B
Svelte
<script lang="ts">
|
|
import { Command as CommandPrimitive } from "bits-ui";
|
|
import { cn } from "$lib/components/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: CommandPrimitive.SeparatorProps = $props();
|
|
</script>
|
|
|
|
<CommandPrimitive.Separator class={cn("bg-border -mx-1 h-px", className)} bind:ref {...restProps} />
|