2025-10-20 08:57:51 +02:00
|
|
|
<script setup lang="ts">
|
2026-02-17 10:35:03 +01:00
|
|
|
import type { HTMLAttributes } from "vue"
|
|
|
|
|
import { cn } from "@/lib/utils"
|
2025-10-20 08:57:51 +02:00
|
|
|
|
|
|
|
|
const props = defineProps<{
|
2026-02-17 10:35:03 +01:00
|
|
|
class?: HTMLAttributes["class"]
|
2025-10-20 08:57:51 +02:00
|
|
|
}>()
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<ul
|
|
|
|
|
data-sidebar="menu"
|
|
|
|
|
:class="cn('flex w-full min-w-0 flex-col gap-1', props.class)"
|
|
|
|
|
>
|
|
|
|
|
<slot />
|
|
|
|
|
</ul>
|
|
|
|
|
</template>
|