- Moved `app.config.ts` to the `app` directory - Migrated `.vue` files and other assets to the `app` directory - Updated import paths to reflect the new file locations
13 lines
391 B
Vue
13 lines
391 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { SelectLabel, type SelectLabelProps } from 'radix-vue'
|
|
import { cn } from '@/utils'
|
|
|
|
const props = defineProps<SelectLabelProps & { class?: HTMLAttributes['class'] }>()
|
|
</script>
|
|
|
|
<template>
|
|
<SelectLabel :class="cn('py-1.5 pl-8 pr-2 text-sm font-semibold', props.class)">
|
|
<slot />
|
|
</SelectLabel>
|
|
</template>
|