Files
gpx.studio/website/src/lib/components/ui/menubar/menubar-shortcut.svelte
2026-04-06 18:22:01 +02:00

21 lines
519 B
Svelte

<script lang="ts">
import type { HTMLAttributes } from "svelte/elements";
import { cn, type WithElementRef } from "$lib/utils.js";
let {
ref = $bindable(null),
class: className,
children,
...restProps
}: WithElementRef<HTMLAttributes<HTMLSpanElement>> = $props();
</script>
<span
bind:this={ref}
data-slot="menubar-shortcut"
class={cn("text-muted-foreground group-focus/menubar-item:text-accent-foreground text-xs tracking-widest ml-auto", className)}
{...restProps}
>
{@render children?.()}
</span>