* update creator item * update warning tooltip * update badge and trigger icon * update action box * update avatar component * update badge * update heading component * update icon component * update link component * update menu * update route component * fix avatar bug * fix avatar bug * update input component * update select * update input * update tags component * update spinner * update square button * update tag component * update text component * add danger color * add vue.extend * add human readable names * add human readable name * revert button changes * update name * revert name * update classes * delete unused component * redo name change * rename * rename back * rename back * update snapshots
16 lines
335 B
Vue
16 lines
335 B
Vue
<template>
|
|
<n8n-tooltip content=" " placement="top" >
|
|
<div slot="content"><slot /></div>
|
|
<font-awesome-icon :class="$style['icon']" icon="exclamation-triangle"></font-awesome-icon>
|
|
</n8n-tooltip>
|
|
</template>
|
|
|
|
|
|
<style lang="scss" module>
|
|
.icon {
|
|
font-size: 14px;
|
|
height: 18px;
|
|
color: $--warning-tooltip-color;
|
|
}
|
|
</style>
|