36 lines
1.0 KiB
JavaScript
36 lines
1.0 KiB
JavaScript
'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('material-ui/SvgIcon');
|
|
|
|
var _SvgIcon2 = _interopRequireDefault(_SvgIcon);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
var SvgIconCustom = global.__MUI_SvgIcon__ || _SvgIcon2.default;
|
|
|
|
var _ref = _react2.default.createElement('path', { d: 'M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22z' });
|
|
|
|
var AcUnit = function AcUnit(props) {
|
|
return _react2.default.createElement(
|
|
SvgIconCustom,
|
|
props,
|
|
_ref
|
|
);
|
|
};
|
|
|
|
AcUnit = (0, _pure2.default)(AcUnit);
|
|
AcUnit.muiName = 'SvgIcon';
|
|
|
|
exports.default = AcUnit; |