mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-03-28 10:16:37 +00:00
17 lines
407 B
Svelte
17 lines
407 B
Svelte
<script lang="ts">
|
|
import type { ClassValue, HTMLAttributes } from "svelte/elements";
|
|
import { cn } from "$lib/utils/style.js";
|
|
|
|
type $$Props = HTMLAttributes<HTMLSpanElement>;
|
|
|
|
let className: ClassValue | undefined | null = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<span
|
|
class={cn("text-muted-foreground ml-auto text-xs tracking-widest", className)}
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</span>
|