22 lines
492 B
Svelte
22 lines
492 B
Svelte
<script lang="ts">
|
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
import { cn } from '$lib/utils.js';
|
|
import { type WithElementRef } from 'bits-ui';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
children,
|
|
...restProps
|
|
}: WithElementRef<HTMLAttributes<HTMLSpanElement>> = $props();
|
|
</script>
|
|
|
|
<span
|
|
bind:this={ref}
|
|
data-slot="dropdown-menu-shortcut"
|
|
class={cn('text-text ml-auto text-xs tracking-widest', className)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</span>
|