mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-10 20:37:29 -08:00
15 lines
357 B
Vue
15 lines
357 B
Vue
|
<template functional>
|
||
|
<el-tooltip effect="light" content=" " placement="top" >
|
||
|
<div slot="content"><slot /></div>
|
||
|
<font-awesome-icon :class="$style['icon']" icon="exclamation-triangle"></font-awesome-icon>
|
||
|
</el-tooltip>
|
||
|
</template>
|
||
|
|
||
|
|
||
|
<style lang="scss" module>
|
||
|
.icon {
|
||
|
font-size: 14px;
|
||
|
height: 18px;
|
||
|
color: $--warning-tooltip-color;
|
||
|
}
|
||
|
</style>
|