2021-12-05 20:23:00 +01:00
|
|
|
<template>
|
2021-12-10 18:30:01 +01:00
|
|
|
<button :disabled="disabled">
|
2021-12-05 20:23:00 +01:00
|
|
|
{{ text }}
|
2021-12-05 21:40:56 +01:00
|
|
|
<fa v-if="icon" :icon="icon" />
|
2021-12-05 20:23:00 +01:00
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
text: {
|
|
|
|
type: String,
|
|
|
|
default: ''
|
2021-12-05 21:40:56 +01:00
|
|
|
},
|
|
|
|
icon: {
|
|
|
|
type: Array,
|
|
|
|
default: null
|
2021-12-10 18:30:01 +01:00
|
|
|
},
|
|
|
|
disabled: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2021-12-05 20:23:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|