mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-29 06:49:55 +00:00
28 lines
492 B
Vue
28 lines
492 B
Vue
<template>
|
|
<i v-tooltip="tooltip" class="help-icon" :class="iconClass"> </i>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'HelpIcon',
|
|
props: {
|
|
tooltip: {
|
|
type: String,
|
|
required: false,
|
|
default: null,
|
|
},
|
|
isWarning: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: false,
|
|
},
|
|
},
|
|
computed: {
|
|
iconClass() {
|
|
return this.isWarning
|
|
? 'iconoir-warning-triangle'
|
|
: 'iconoir-chat-bubble-question'
|
|
},
|
|
},
|
|
}
|
|
</script>
|