Minimal Viable Product + Refactor to pinia store + Fix PDF export
Some checks failed
linter / quality (push) Successful in 3m37s
tests / ci (push) Failing after 13m21s

This commit is contained in:
2025-09-16 16:30:37 +02:00
parent f3ff6fd6ac
commit cb242e59ba
39 changed files with 1055 additions and 137 deletions

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
import Icon from './Icon.vue';
import Button from './ui/button/Button.vue';
const props = defineProps<{
logoName: string
}>();
</script>
<template>
<Button variant="outline" size="sm" class="px-1 gap-0 cursor-pointer">
<Icon :name="props.logoName" v-bind="$attrs" :size="20" />
</Button>
</template>