You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
406 B
Vue
16 lines
406 B
Vue
<script setup lang="ts">
|
|
import Separator from '@/components/ui/separator/Separator.vue';
|
|
import { cn } from '@/lib/utils';
|
|
import type { HTMLAttributes } from 'vue';
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes['class'];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<Separator data-sidebar="separator" :class="cn('mx-2 w-auto bg-sidebar-border', props.class)">
|
|
<slot />
|
|
</Separator>
|
|
</template>
|