How to use the react-icons-kit/md.ic_pause_circle_outline function in react-icons-kit

To help you get started, we’ve selected a few react-icons-kit examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Harmoware / Harmoware-VIS / lib / components / pause-button.js View on Github external
value: function render() {
      var _props = this.props,
          children = _props.children,
          i18n = _props.i18n,
          className = _props.className;


      return _react2.default.createElement(
        'button',
        { onClick: this.setAnimatePause.bind(this), className: className },
        children === undefined ? _react2.default.createElement(
          'span',
          null,
          _react2.default.createElement(_reactIconsKit.Icon, { icon: _md.ic_pause_circle_outline }),
          '\xA0',
          i18n.pauseButtonCaption
        ) : _react2.default.createElement(
          'span',
          null,
          children
        )
      );
    }
  }]);