mirror of
https://github.com/bitinflow/ui.git
synced 2026-03-13 21:55:59 +00:00
add dist
This commit is contained in:
20
dist/runtime/components/BitinflowSecondLevelLink.vue
vendored
Normal file
20
dist/runtime/components/BitinflowSecondLevelLink.vue
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user