mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-04-28 06:42:58 +00:00
11 lines
339 B
Svelte
11 lines
339 B
Svelte
<script lang='ts'>
|
|
import { Command as CommandPrimitive } from 'cmdk-sv'
|
|
|
|
import { cn } from '$lib/utils.js'
|
|
|
|
type $$Props = CommandPrimitive.SeparatorProps
|
|
let className: $$Props['class'] = ''
|
|
export { className as class }
|
|
</script>
|
|
|
|
<CommandPrimitive.Separator class={cn('bg-border -mx-1 h-px', className)} {...$$restProps} />
|