mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
23 lines
494 B
Vue
23 lines
494 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from "vue";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<ul
|
|
data-slot="sidebar-menu-sub"
|
|
data-sidebar="menu-badge"
|
|
:class="cn(
|
|
'border-sidebar-border mx-3.5 flex min-w-0 translate-x-px flex-col gap-1 border-l px-2.5 py-0.5',
|
|
'group-data-[collapsible=icon]:hidden',
|
|
props.class,
|
|
)"
|
|
>
|
|
<slot />
|
|
</ul>
|
|
</template>
|