Some checks failed
Production PR / QA Tests (pull_request) Failing after 13s
19 lines
450 B
Vue
19 lines
450 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from "vue";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
variant?: "legend" | "label";
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<legend
|
|
data-slot="field-legend"
|
|
:data-variant="variant"
|
|
:class="cn('mb-3 font-medium', 'data-[variant=legend]:text-base', 'data-[variant=label]:text-sm', props.class)"
|
|
>
|
|
<slot />
|
|
</legend>
|
|
</template>
|