mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 17:14:05 -08:00
5ca2148c7e
* ⚡ Adjust `format` script * 🔥 Remove exemption for `editor-ui` * 🎨 Prettify * 👕 Fix lint
17 lines
336 B
Vue
17 lines
336 B
Vue
<template>
|
|
<n8n-tooltip content=" " placement="top">
|
|
<template #content>
|
|
<slot />
|
|
</template>
|
|
<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>
|