Files
ui-old/components/SecondLevelLink.vue
René Preuß 473c69869d Initial commit
2022-10-30 14:15:45 +01:00

17 lines
286 B
Vue

<template>
<Button class="flex items-center gap-2">
<i :class="['fal', icon]"></i> <slot/>
</Button>
</template>
<script>
export default {
name: "SecondLevelLink",
props: {
icon: {
type: String,
default: 'fa-arrow-up-right-from-square'
}
}
}
</script>