mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-27 17:41:21 +00:00
19 lines
502 B
Svelte
19 lines
502 B
Svelte
<script lang="ts">
|
|
import { DropdownMenu as DropdownMenuPrimitive } from 'bits-ui';
|
|
import { cn } from '$lib/utils';
|
|
|
|
type $$Props = DropdownMenuPrimitive.LabelProps & {
|
|
inset?: boolean;
|
|
};
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export let inset: $$Props['inset'] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<DropdownMenuPrimitive.Label
|
|
class={cn('px-2 py-1.5 text-sm font-semibold', inset && 'pl-8', className)}
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</DropdownMenuPrimitive.Label>
|