mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
19 lines
326 B
Vue
19 lines
326 B
Vue
<template>
|
|
<span>
|
|
<n8n-tooltip content=" " placement="top">
|
|
<template #content>
|
|
<slot />
|
|
</template>
|
|
<n8n-icon :class="$style['icon']" icon="triangle-alert" />
|
|
</n8n-tooltip>
|
|
</span>
|
|
</template>
|
|
|
|
<style lang="scss" module>
|
|
.icon {
|
|
font-size: 14px;
|
|
height: 18px;
|
|
color: $warning-tooltip-color;
|
|
}
|
|
</style>
|