mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 04:19:22 +00:00
21 lines
418 B
Vue
21 lines
418 B
Vue
<script lang="ts" setup>
|
|
import type { HTMLAttributes } from "vue";
|
|
import { useFormField } from "./useFormField";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
|
|
const { formDescriptionId } = useFormField();
|
|
</script>
|
|
|
|
<template>
|
|
<p
|
|
:id="formDescriptionId"
|
|
:class="cn('text-sm text-muted-foreground', props.class)"
|
|
>
|
|
<slot />
|
|
</p>
|
|
</template>
|