|
1234567891011121314151617181920212223242526272829303132 |
- 'use strict';
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var _react = require('react');
-
- var _react2 = _interopRequireDefault(_react);
-
- var _pure = require('recompose/pure');
-
- var _pure2 = _interopRequireDefault(_pure);
-
- var _SvgIcon = require('../../SvgIcon');
-
- var _SvgIcon2 = _interopRequireDefault(_SvgIcon);
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
-
- var ContentUndo = function ContentUndo(props) {
- return _react2.default.createElement(
- _SvgIcon2.default,
- props,
- _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' })
- );
- };
- ContentUndo = (0, _pure2.default)(ContentUndo);
- ContentUndo.displayName = 'ContentUndo';
- ContentUndo.muiName = 'SvgIcon';
-
- exports.default = ContentUndo;
|