Change structure

This commit is contained in:
René Preuß
2022-10-31 17:45:12 +01:00
parent cd4b8ff726
commit fb90843b98
24 changed files with 1257 additions and 7 deletions

View File

@@ -1,20 +0,0 @@
<template>
<a class="hover:bg-primary-500 rounded-lg text-center text-xs py-4 flex flex-col space-y-2" href="#">
<i :class="['fal text-xl', icon]"></i>
<span>
<slot/>
</span>
</a>
</template>
<script>
export default {
name: "FirstLevelLink",
props: {
icon: {
type: String,
default: 'fa-arrow-up-right-from-square'
}
}
}
</script>