Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

32 wiersze
913 B

  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. var _react = require('react');
  6. var _react2 = _interopRequireDefault(_react);
  7. var _pure = require('recompose/pure');
  8. var _pure2 = _interopRequireDefault(_pure);
  9. var _SvgIcon = require('../../SvgIcon');
  10. var _SvgIcon2 = _interopRequireDefault(_SvgIcon);
  11. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  12. var ContentUndo = function ContentUndo(props) {
  13. return _react2.default.createElement(
  14. _SvgIcon2.default,
  15. props,
  16. _react2.default.createElement('path', { d: 'M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z' })
  17. );
  18. };
  19. ContentUndo = (0, _pure2.default)(ContentUndo);
  20. ContentUndo.displayName = 'ContentUndo';
  21. ContentUndo.muiName = 'SvgIcon';
  22. exports.default = ContentUndo;