(function registerFreeSeoExportButton(global) {
  'use strict';

  function ExportButton(props) {
    var React = global.React;
    var disabled = Boolean(props && props.disabled);
    var label = props && props.label || 'Export';
    var onClick = props && props.onClick || function noop() {};
    return React.createElement('button', {
      type: 'button',
      className: 'button button-secondary free-seo-export-button',
      disabled: disabled,
      onClick: onClick
    }, label);
  }

  global.FreeSeoExportButton = ExportButton;
})(typeof window !== 'undefined' ? window : globalThis);
