mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-07-03 14:51:30 +00:00
31 lines
676 B
Svelte
31 lines
676 B
Svelte
<script lang="ts">
|
|
import { cn } from "@kksh/ui/utils"
|
|
import { Command as CommandPrimitive } from "bits-ui"
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
children,
|
|
heading,
|
|
...restProps
|
|
}: CommandPrimitive.GroupProps & {
|
|
heading?: string
|
|
} = $props()
|
|
</script>
|
|
|
|
<CommandPrimitive.Group
|
|
class={cn("text-foreground select-none overflow-hidden p-1", className)}
|
|
bind:ref
|
|
{...restProps}
|
|
>
|
|
{#if heading}
|
|
<CommandPrimitive.GroupHeading
|
|
data-tauri-drag-region
|
|
class="text-muted-foreground px-2 py-1.5 text-xs font-medium"
|
|
>
|
|
{heading}
|
|
</CommandPrimitive.GroupHeading>
|
|
{/if}
|
|
<CommandPrimitive.GroupItems {children} />
|
|
</CommandPrimitive.Group>
|