mirror of https://github.com/TZGyn/shortener
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
351 B
Svelte
11 lines
351 B
Svelte
<script lang="ts">
|
|
import { Command as CommandPrimitive } from "cmdk-sv";
|
|
import { cn } from "$lib/utils";
|
|
|
|
type $$Props = CommandPrimitive.SeparatorProps;
|
|
let className: string | undefined | null = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<CommandPrimitive.Separator class={cn("-mx-1 h-px bg-border", className)} {...$$restProps} />
|