mirror of
https://github.com/bitinflow/ui.git
synced 2026-03-13 13:45:59 +00:00
21 lines
389 B
Vue
21 lines
389 B
Vue
<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>
|