Files
neo/frontend/components/ui/label/Label.vue
Francisco Gaona 150edfaf41 Added login design
2025-11-25 18:58:49 +01:00

30 lines
594 B
Vue

<script setup lang="ts">
import type { HTMLAttributes } from "vue"
import { reactiveOmit } from "@vueuse/core"
import { Label } from "reka-ui"
import { cn } from "@/lib/utils"
interface Props {
for?: string
class?: HTMLAttributes["class"]
}
const props = defineProps<Props>()
const delegatedProps = reactiveOmit(props, "class")
</script>
<template>
<Label
v-bind="delegatedProps"
:class="
cn(
'text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70',
props.class,
)
"
>
<slot />
</Label>
</template>