Some checks failed
Production PR / QA Tests (pull_request) Failing after 13s
19 lines
419 B
Vue
19 lines
419 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from "vue";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<fieldset
|
|
data-slot="field-set"
|
|
:class="
|
|
cn('flex flex-col gap-6', 'has-[>[data-slot=checkbox-group]]:gap-3 has-[>[data-slot=radio-group]]:gap-3', props.class)
|
|
"
|
|
>
|
|
<slot />
|
|
</fieldset>
|
|
</template>
|