Added sample behaviour for category modal

This commit is contained in:
Alexis
2025-03-28 20:54:12 +01:00
parent 2856185a3c
commit 637a5cd7e3
15 changed files with 104 additions and 340 deletions

View File

@@ -0,0 +1,13 @@
<script setup lang="ts">
import { DropdownMenuArrow, type DropdownMenuArrowProps, useForwardProps } from "radix-vue"
const props = defineProps<DropdownMenuArrowProps>()
const forwardedProps = useForwardProps(props)
</script>
<template>
<DropdownMenuArrow class="fill-border" v-bind="forwardedProps">
<slot />
</DropdownMenuArrow>
</template>