mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-05-04 14:48:55 +00:00
20 lines
498 B
Svelte
20 lines
498 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']
|
|
export let inset: $$Props['inset']
|
|
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>
|