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