reply-button.js 345 B

1234567891011121314151617
  1. /* jshint ignore:start */
  2. import React from 'react';
  3. export default function(props) {
  4. return (
  5. <button
  6. className={props.className || 'btn btn-primary btn-outline'}
  7. onClick={props.onClick}
  8. type="button"
  9. >
  10. <span className="material-icon">
  11. chat
  12. </span>
  13. {gettext("Reply")}
  14. </button>
  15. );
  16. }