<!--
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-Panel{{#if props.modifier}}{{#each props.modifier}} ms-Panel--{{name}}{{/each}}{{/if}}">
  <button class="ms-Panel-closeButton ms-PanelAction-close">
    <i class="ms-Panel-closeIcon ms-Icon ms-Icon--Cancel"></i>
  </button>
  <div class="ms-Panel-contentInner">
    <p class="ms-Panel-headerText">{{props.headerText}}</p>
    <div class="ms-Panel-content">
      <span class="ms-font-m">{{props.content}}</span>
    </div>
  </div>
</div>