1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-29 06:49:55 +00:00
bramw_baserow/web-frontend/modules/core/components/HelpIcon.vue
Jonathan Adeline 4321aaea9a Replace icons
2023-09-28 13:39:41 +00:00

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>