mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 16:22:16 +01:00
14 lines
400 B
Vue
14 lines
400 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue';
|
|
import { cn } from '@/lib/utils';
|
|
import { SelectLabel, type SelectLabelProps } from 'reka-ui';
|
|
|
|
const props = defineProps<SelectLabelProps & { class?: HTMLAttributes['class'] }>();
|
|
</script>
|
|
|
|
<template>
|
|
<SelectLabel :class="cn('px-2 py-1.5 text-sm font-semibold', props.class)">
|
|
<slot />
|
|
</SelectLabel>
|
|
</template>
|