2025-10-20 08:57:51 +02:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import type { HTMLAttributes } from 'vue'
|
|
|
|
|
import { cn } from '@/lib/utils'
|
|
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
|
class?: HTMLAttributes['class']
|
|
|
|
|
}>()
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div
|
|
|
|
|
data-slot="sidebar-footer"
|
|
|
|
|
data-sidebar="footer"
|
2025-10-22 16:51:28 +02:00
|
|
|
:class="cn('flex flex-col gap-2 p-2 overflow-x-hidden', props.class)"
|
2025-10-20 08:57:51 +02:00
|
|
|
>
|
|
|
|
|
<slot />
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|