mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-20 15:23:50 +02:00
20 lines
408 B
Vue
20 lines
408 B
Vue
<script setup>
|
|
import { cn } from '@/lib/utils';
|
|
|
|
const props = defineProps({
|
|
class: {
|
|
type: [String, Array, Object],
|
|
default: undefined
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
data-slot="sidebar-group"
|
|
data-sidebar="group"
|
|
:class="cn('relative flex w-full min-w-0 flex-col p-2', props.class)">
|
|
<slot />
|
|
</div>
|
|
</template>
|