mirror of
https://github.com/bitinflow/ui-old.git
synced 2026-03-13 13:45:57 +00:00
20 lines
378 B
Vue
20 lines
378 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: "FirstLevelLink",
|
|
props: {
|
|
icon: {
|
|
type: String,
|
|
default: 'fa-arrow-up-right-from-square'
|
|
}
|
|
}
|
|
}
|
|
</script> |