Move dropdown menu into UI package

This commit is contained in:
Gregor Vostrak
2026-03-03 17:46:42 +01:00
parent 1cdae98ed9
commit bce6cb9395
35 changed files with 51 additions and 19 deletions

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
import type { HTMLAttributes } from 'vue';
import { cn } from '@/lib/utils';
const props = defineProps<{
class?: HTMLAttributes['class'];
}>();
</script>
<template>
<span :class="cn('ml-auto text-xs tracking-widest opacity-60', props.class)">
<slot />
</span>
</template>