this repo has no description
1<script setup lang="ts">
2import type { HTMLAttributes } from 'vue'
3import { cn } from '@/lib/utils'
4
5const props = defineProps<{
6 class?: HTMLAttributes['class']
7}>()
8</script>
9
10<template>
11 <div
12 data-slot="sidebar-header"
13 data-sidebar="header"
14 :class="cn('flex flex-col gap-2 p-2', props.class)"
15 >
16 <slot />
17 </div>
18</template>