mirror of
https://github.com/bitinflow/ui.git
synced 2026-03-13 13:45:59 +00:00
21 lines
402 B
Vue
21 lines
402 B
Vue
<template>
|
|
<bitinflow-button class="flex items-center gap-2">
|
|
<i :class="['fal', icon]" /> <slot />
|
|
</bitinflow-button>
|
|
</template>
|
|
|
|
<script>
|
|
import BitinflowButton from "./BitinflowButton.vue";
|
|
|
|
export default {
|
|
name: "BitinflowSecondLevelLink",
|
|
components: {BitinflowButton},
|
|
props: {
|
|
icon: {
|
|
type: String,
|
|
default: 'fa-arrow-up-right-from-square'
|
|
}
|
|
}
|
|
}
|
|
</script>
|