miru/src/lib/components/ui/command/command-separator.svelte
ThaUnknown 86492ed76f
feat: player stats, prev/next
fix: import order
2025-05-22 16:05:41 +02:00

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} />