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

21 lines
410 B
Vue

<script setup>
import { cn } from "@/lib/utils";
import { fieldVariants } from ".";
const props = defineProps({
class: { type: null, required: false },
orientation: { type: null, required: false },
});
</script>
<template>
<div
role="group"
data-slot="field"
:data-orientation="orientation"
:class="cn(fieldVariants({ orientation }), props.class)"
>
<slot />
</div>
</template>