mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-03 17:12:31 +00:00
17 lines
376 B
Svelte
17 lines
376 B
Svelte
![]() |
<script lang="ts">
|
||
|
import type { HTMLAttributes } from "svelte/elements";
|
||
|
import { cn } from "$lib/utils.js";
|
||
|
|
||
|
type $$Props = HTMLAttributes<HTMLSpanElement>;
|
||
|
|
||
|
let className: $$Props["class"] = undefined;
|
||
|
export { className as class };
|
||
|
</script>
|
||
|
|
||
|
<span
|
||
|
class={cn("ml-auto text-xs tracking-widest text-muted-foreground", className)}
|
||
|
{...$$restProps}
|
||
|
>
|
||
|
<slot />
|
||
|
</span>
|