mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-09 20:27:44 +00:00
20 lines
516 B
Svelte
20 lines
516 B
Svelte
<script lang="ts">
|
|
import { ContextMenu as ContextMenuPrimitive } from "bits-ui";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
type $$Props = ContextMenuPrimitive.LabelProps & {
|
|
inset?: boolean;
|
|
};
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
export let inset: $$Props["inset"] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<ContextMenuPrimitive.Label
|
|
class={cn("text-foreground px-2 py-1.5 text-sm font-semibold", inset && "pl-8", className)}
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</ContextMenuPrimitive.Label>
|