Initial commit

This commit is contained in:
René Preuß
2022-10-30 14:15:45 +01:00
commit 473c69869d
18 changed files with 515 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<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>