13 lines
302 B
Svelte
13 lines
302 B
Svelte
<script>
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let { ref = $bindable(null), class: className, children, ...restProps } = $props();
|
|
</script>
|
|
|
|
<span
|
|
bind:this={ref}
|
|
class={cn("ml-auto text-xs tracking-widest text-muted-foreground", className)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</span>
|