components/forms/15-button-container/button-container.html (10 lines of code) (raw):
{# @button-container
#
# parameters:
# class - string
#}
<div class="mzp-c-button-container{% if class %} {{ class }}{% endif %}">
{% render '@button', { label: 'Primary' } %}
{% render '@button', { label: 'Secondary', class: 'mzp-t-secondary' } %}
<p class="mzp-c-button-info">More information.</p>
</div>