mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-19 13:54:12 +02:00
20 lines
615 B
Svelte
20 lines
615 B
Svelte
<script lang="ts">
|
|
import { Command as CommandPrimitive } from 'bits-ui';
|
|
import { cn } from '$lib/utils.js';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: CommandPrimitive.LinkItemProps = $props();
|
|
</script>
|
|
|
|
<CommandPrimitive.LinkItem
|
|
class={cn(
|
|
'aria-selected:bg-accent aria-selected:text-accent-foreground relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0',
|
|
className
|
|
)}
|
|
bind:ref
|
|
{...restProps}
|
|
/>
|