mirror of
https://github.com/bitinflow/ui.git
synced 2026-03-13 13:45:59 +00:00
add dist
This commit is contained in:
20
dist/runtime/components/BitinflowFirstLevelLink.vue
vendored
Normal file
20
dist/runtime/components/BitinflowFirstLevelLink.vue
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<template>
|
||||
<a class="hover:bg-primary-500 rounded-lg text-center text-xs py-4 flex flex-col space-y-2" href="#">
|
||||
<i :class="['fal text-xl', icon]"></i>
|
||||
<span>
|
||||
<slot />
|
||||
</span>
|
||||
</a>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "BitinflowFirstLevelLink",
|
||||
props: {
|
||||
icon: {
|
||||
type: String,
|
||||
default: 'fa-arrow-up-right-from-square'
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user