{% call SGBuilder.SGSection({ title: 'Featured icon', id: 'featured-icon' }) %}
  {% call GridBuilder.Grid() %}
    {% call GridBuilder.GridColumn({ md: 12 }) %}
      <h3>Featured icon</h3>
      {% call SGBuilder.SGRow() %}
        {{ FeaturedIcon({
          className: 'featured-icon--primary',
          icon: 'icons/key'
        }) }}

        {{ FeaturedIcon({
          className: 'featured-icon--success',
          icon: 'icons/success'
        }) }}

        {{ FeaturedIcon({
          className: 'featured-icon--primary',
          icon: 'icons/email'
        }) }}
      {% endcall %}
    {% endcall %}
  {% endcall %}
{% endcall %}
