413c84e293
- Update buttons, inputs, menus, tabs, sliders, and dialogs to show pointer cursors - Keep disabled states unchanged
20 lines
560 B
Svelte
20 lines
560 B
Svelte
<script lang="ts">
|
|
import { Command as CommandPrimitive } from "bits-ui";
|
|
import { cn } from "$lib/components/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-pointer 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
|
|
)}
|
|
bind:ref
|
|
{...restProps}
|
|
/>
|