mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-27 23:41:21 +00:00
13 lines
377 B
Svelte
13 lines
377 B
Svelte
<script lang="ts">
|
|
import { Select as SelectPrimitive } from 'bits-ui';
|
|
import { cn } from '$lib/utils';
|
|
|
|
type $$Props = SelectPrimitive.LabelProps;
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<SelectPrimitive.Label class={cn('px-2 py-1.5 text-sm font-semibold', className)} {...$$restProps}>
|
|
<slot />
|
|
</SelectPrimitive.Label>
|