mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-03-28 18:26:36 +00:00
26 lines
732 B
Svelte
26 lines
732 B
Svelte
<script lang="ts">
|
|
import { Command as CommandPrimitive } from "cmdk-sv";
|
|
import { cn } from "$lib/utils/style.js";
|
|
import type { ClassValue } from "svelte/elements";
|
|
|
|
type $$Props = CommandPrimitive.ItemProps;
|
|
|
|
export let asChild = false;
|
|
|
|
let className: ClassValue | undefined | null = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<CommandPrimitive.Item
|
|
{asChild}
|
|
class={cn(
|
|
"aria-selected:bg-accent aria-selected:text-accent-foreground relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
className
|
|
)}
|
|
{...$$restProps}
|
|
let:action
|
|
let:attrs
|
|
>
|
|
<slot {action} {attrs} />
|
|
</CommandPrimitive.Item>
|