Change structure

This commit is contained in:
René Preuß
2022-10-31 18:20:33 +01:00
parent fb90843b98
commit 1ff9c3de33
25 changed files with 70 additions and 1272 deletions

View File

@@ -0,0 +1,20 @@
<template>
<Button class="flex items-center gap-2">
<i :class="['fal', icon]"></i> <slot/>
</Button>
</template>
<script>
import Button from "./Button.vue";
export default {
name: "SecondLevelLink",
components: {Button},
props: {
icon: {
type: String,
default: 'fa-arrow-up-right-from-square'
}
}
}
</script>