initial commit

This commit is contained in:
Arno Kaimbacher 2023-03-03 16:54:28 +01:00
commit 4fc3bb0a01
202 changed files with 41729 additions and 0 deletions

View file

@ -0,0 +1,23 @@
<script setup>
import BaseIcon from '@/Components/BaseIcon.vue';
defineProps({
icon: {
type: String,
default: null
},
h: {
type: String,
default: null
}
})
</script>
<template>
<BaseIcon
:path="icon"
w="w-10"
:h="h"
class="absolute top-0 left-0 z-10 pointer-events-none text-gray-500 dark:text-slate-400"
/>
</template>