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