<!--
Office UI Fabric JS 1.5.0
The JavaScript front-end framework for building experiences for Office 365.
-->
<!-- Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information. --><div class="ms-Callout{{#if props.arrowPosition}} ms-Callout--{{props.arrowPosition}} {{/if}}{{#if props.modifier}} ms-Callout--{{props.modifier}}{{/if}} {{props.state}}">
  <div class="ms-Callout-main">
    {{#if props.closeIcon}}
    <button class="ms-Callout-close">
      <i class="ms-Icon ms-Icon--{{props.closeIcon}}"></i>
    </button>
    {{/if}}
    <div class="ms-Callout-header">
      <p class="ms-Callout-title">{{{props.title}}}</p>
    </div>
    <div class="ms-Callout-inner">
      <div class="ms-Callout-content">
         <p class="ms-Callout-subText">{{props.subText}}</p>
      </div>
      <div class="ms-Callout-actions">
         {{#each props.actions}}
            {{renderPartial component props}}
         {{/each}}
      </div>
    </div>     
  </div>
</div>