28 lines
621 B
Vue
28 lines
621 B
Vue
<script setup lang="ts">
|
|
import { type HTMLAttributes, computed } from "vue"
|
|
import { Label, type LabelProps } from "radix-vue"
|
|
import { cn } from "~/lib/utils"
|
|
|
|
const props = defineProps<LabelProps & { class?: HTMLAttributes["class"] }>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Label
|
|
v-bind="delegatedProps"
|
|
:class="
|
|
cn(
|
|
'text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70 cursor-pointer',
|
|
props.class,
|
|
)
|
|
"
|
|
>
|
|
<slot />
|
|
</Label>
|
|
</template>
|