mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-03-28 10:16:37 +00:00
12 lines
416 B
Svelte
12 lines
416 B
Svelte
<script lang="ts">
|
|
import { Command as CommandPrimitive } from "cmdk-sv";
|
|
import { cn } from "$lib/utils/style.js";
|
|
import type { ClassValue } from "svelte/elements";
|
|
|
|
type $$Props = CommandPrimitive.SeparatorProps;
|
|
let className: ClassValue | undefined | null = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<CommandPrimitive.Separator class={cn("bg-border -mx-1 h-px", className)} {...$$restProps} />
|