<div class="c-notification js-notification {{ notification.classes}}">
  {% if notification_button.hide == true %}
    <a href="#" class="c-notification__button js-notification-trigger {{ notification_button.classes }}">
      {% include "atoms-icon" with {
        icon: {
          name: 'close',
          classes: 'c-icon--small c-notification--close'
        }
      } %}
      <span class="u-visuallyhidden">{{ notification_button.text | default("Close Notification") }}</span>
    </a>
  {% endif %}

  <div class="c-notification__text {{ notification_text.classes}}">
    {{ notification.text | default("Default notification text") }}
  </div>
</div>
