{# coffee utility-bar — thin contact strip; left/right item lists {icon,label,link}. #} {% set ubcls = "bg-muted text-muted-foreground border-b border-dashed border-border" %} {% if variant == "primary" %}{% set ubcls = "bg-primary text-primary-foreground" %}{% elif variant == "dark" %}{% set ubcls = "bg-foreground text-background" %}{% endif %} {% macro ubitem(it) %}{% if it.link %}{% if it.icon %}{% endif %}{% if it.label %}{{ it.label }}{% endif %}{% else %}{% if it.icon %}{% endif %}{% if it.label %}{{ it.label }}{% endif %}{% endif %}{% endmacro %}
{% for it in leftItems %}{{ ubitem(it) }}{% endfor %}
{% for it in rightItems %}{{ ubitem(it) }}{% endfor %}