init
Initial mock up of the app
This commit is contained in:
16
src/components/ui/context-menu/ContextMenuSeparator.vue
Normal file
16
src/components/ui/context-menu/ContextMenuSeparator.vue
Normal file
@@ -0,0 +1,16 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user