mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-27 23:41:21 +00:00
12 lines
381 B
Svelte
12 lines
381 B
Svelte
<script lang="ts">
|
|
import { Command as CommandPrimitive } from 'cmdk-sv';
|
|
import { cn } from '$lib/utils';
|
|
|
|
type $$Props = CommandPrimitive.EmptyProps;
|
|
let className: string | undefined | null = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<CommandPrimitive.Empty class={cn('py-6 text-center text-sm', className)} {...$$restProps}>
|
|
<slot />
|
|
</CommandPrimitive.Empty>
|