mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 06:13:52 +02:00
16 lines
345 B
Vue
16 lines
345 B
Vue
<script setup>
|
|
import { cn } from '@/lib/utils';
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false }
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
data-slot="field-content"
|
|
:class="cn('group/field-content flex flex-1 flex-col gap-1.5 leading-snug', props.class)">
|
|
<slot />
|
|
</div>
|
|
</template>
|