mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-10 12:27:44 +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("text-muted-foreground ml-auto text-xs tracking-widest", className)}
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</span>
|