18 lines
315 B
Vue
18 lines
315 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes['class']
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
data-sidebar="group-content"
|
|
:class="cn('w-full text-sm', props.class)"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</template>
|