Files
zeroone/src/components/ui/context-menu/ContextMenuSeparator.vue
KM 6e4dc5e9db init
Initial mock up of the app
2024-01-22 12:03:56 +01:00

17 lines
365 B
Vue

<script setup>
import { ContextMenuSeparator } from "radix-vue";
import { cn } from "@/lib/utils";
const props = defineProps({
asChild: { type: Boolean, required: false },
as: { type: null, required: false },
});
</script>
<template>
<ContextMenuSeparator
v-bind="props"
:class="cn('-mx-1 my-1 h-px bg-border', $attrs.class ?? '')"
/>
</template>