10 lines
198 B
HTML
10 lines
198 B
HTML
{% from "components/icon.html" import Icon %}
|
|
|
|
{% macro Tooltip(message) -%}
|
|
|
|
<span class="tooltip-wrapper" v-tooltip="{content: '{{message}}'}">
|
|
{{ Icon('help') }}
|
|
</span>
|
|
|
|
{%- endmacro %}
|