2024-11-30 00:58:04 +01:00
|
|
|
<script setup lang="ts">
|
2025-03-28 01:16:24 +01:00
|
|
|
import { Separator } from "@/components/ui/separator";
|
2024-11-30 00:58:04 +01:00
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
|
import type { HTMLAttributes } from "vue";
|
|
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
|
class?: HTMLAttributes["class"];
|
|
|
|
|
}>();
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<Separator
|
2025-04-10 13:55:56 +02:00
|
|
|
data-slot="sidebar-separator"
|
2024-11-30 00:58:04 +01:00
|
|
|
data-sidebar="separator"
|
2025-04-10 13:55:56 +02:00
|
|
|
:class="cn('bg-sidebar-border mx-2 w-auto', props.class)"
|
2024-11-30 00:58:04 +01:00
|
|
|
>
|
|
|
|
|
<slot />
|
|
|
|
|
</Separator>
|
|
|
|
|
</template>
|