mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
24 lines
538 B
Vue
24 lines
538 B
Vue
<script lang="ts" setup>
|
|
import { cn } from "@/lib/utils";
|
|
import type { LabelProps } from "radix-vue";
|
|
import type { HTMLAttributes } from "vue";
|
|
import { Label } from "~/components/ui/label";
|
|
import { useFormField } from "./useFormField";
|
|
|
|
const props = defineProps<LabelProps & { class?: HTMLAttributes["class"] }>();
|
|
|
|
const { error, formItemId } = useFormField();
|
|
</script>
|
|
|
|
<template>
|
|
<Label
|
|
:class="cn(
|
|
error && 'text-destructive',
|
|
props.class,
|
|
)"
|
|
:for="formItemId"
|
|
>
|
|
<slot />
|
|
</Label>
|
|
</template>
|