{% import "helpers/system.nunj" as systemMacros %}

{% macro status(status) %}{{ systemMacros.status(status) }}{% endmacro %}

{% macro notification(message, title=null, type='info') %}
<div class="Notification">
    <i class="Notification-icon">
    {{ svg(type, '#999', '24px', '24px') }}
    </i>
    <div class="Notification-content">
        {% if title %}<h4 class="Notification-title">{{ title }}</h4>{% endif %}
        <div class="Notification-message">
        {{ message }}
        </div>
    </div>
</div> <!-- /.Notification -->
{% endmacro %}

{% macro svg(name, fill='#222', width='20px', height='20px', viewbox='0 0 64 64') %}{{ systemMacros.svg(name, fill, width, height, viewbox) }}{% endmacro %}
