Minimal Viable Product + Refactor to pinia store + Fix PDF export
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<script setup lang="ts">
|
||||
import Icon from '@/components/Icon.vue';
|
||||
import Button from '@/components/ui/button/Button.vue';
|
||||
|
||||
const props = defineProps<{
|
||||
logoName: string
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Button variant="secondary" size="sm" class="px-1 gap-0 cursor-pointer">
|
||||
<Icon :name="props.logoName" v-bind="$attrs" :size="20" />
|
||||
</Button>
|
||||
</template>
|
||||
Reference in New Issue
Block a user