implement logout dialog, fix unused imports

This commit is contained in:
padreug 2025-02-11 15:50:33 +01:00
parent d81357ead1
commit 3aa8050b3f
15 changed files with 475 additions and 99 deletions

View file

@ -0,0 +1,14 @@
<script setup lang="ts">
import { cn } from '@/lib/utils'
import type { HTMLAttributes } from 'vue'
const props = defineProps<{
class?: HTMLAttributes['class']
}>()
</script>
<template>
<div :class="cn('flex flex-col space-y-1.5 text-center sm:text-left', props.class)">
<slot />
</div>
</template>