Files
n8n-enterprise-unlocked/packages/frontend/editor-ui/src/components/WarningTooltip.vue
Alex Grozav ed2cb3c701 feat(editor): Update icons to Lucide icons (#16231)
Co-authored-by: Mutasem Aldmour <mutasem@n8n.io>
2025-06-30 17:11:09 +02:00

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>