0.0.17

⌘K-sv

Fast, composable, unstyled command menu for Svelte.

huntabyte/cmdk-sv

Suggestions
Linear Application
Figma Application
Slack Application
YouTube Application
Raycast Application
Commands
Clipboard History Command
Import Extension Command
Manage Extensions Command

		
		
<script>
import { Command } from 'cmdk-sv';
let loading = false
</script>
<Command.Root>
<Command.Input />
<Command.List>
{#if loading}
<Command.Loading>Loading...</Command.Loading>
{/if}
<Command.Empty>No results found.</Command.Empty>
<Command.Group heading="Fruits">
<Command.Item>Apple</Command.Item>
<Command.Item>Orange</Command.Item>
<Command.Separator />
<Command.Item>Pear</Command.Item>
<Command.Item>Blueberry</Command.Item>
</Command.Group>
<Command.Item>Fish</Command.Item>
</Command.List>
</Command.Root>