20 lines
371 B
Vue
20 lines
371 B
Vue
<script setup>
|
|
import { cn } from "@/lib/utils";
|
|
import { useFormField } from "./useFormField";
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false },
|
|
});
|
|
|
|
const { formDescriptionId } = useFormField();
|
|
</script>
|
|
|
|
<template>
|
|
<p
|
|
:id="formDescriptionId"
|
|
:class="cn('text-sm text-muted-foreground', props.class)"
|
|
>
|
|
<slot />
|
|
</p>
|
|
</template>
|