Teren-app/resources/js/Components/ui/field/FieldLegend.vue
Simon Pocrnjič cc4c07717e Changes
2026-01-18 18:21:41 +01:00

26 lines
469 B
Vue

<script setup>
import { cn } from "@/lib/utils";
const props = defineProps({
class: { type: null, required: false },
variant: { type: String, required: false },
});
</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>